parent
b3e12a3c47
commit
06328ec00a
@ -1,2 +1,3 @@ |
||||
@ChatMessage = new Meteor.Collection null |
||||
@ChatRoom = new Meteor.Collection 'rocketchat_room' |
||||
@Settings = new Meteor.Collection 'rocketchat_settings' |
||||
|
||||
@ -0,0 +1,5 @@ |
||||
Meteor.startup(function() { |
||||
RocketChat.settings.addGroup('Livechat'); |
||||
RocketChat.settings.add('Livechat_title' , 'Rocket.Chat', { type: 'string', group: 'Livechat', i18nLabel: 'rocketchat-livechat:Livechat_title', public: true }); |
||||
RocketChat.settings.add('Livechat_title_color' , '#C1272D', { type: 'string', group: 'Livechat', i18nLabel: 'rocketchat-livechat:Livechat_title_color', public: true }); |
||||
}); |
||||
@ -0,0 +1,4 @@ |
||||
{ |
||||
"Livechat_title": "Livechat title", |
||||
"Livechat_title_color": "Livechat title background color" |
||||
} |
||||
@ -0,0 +1,4 @@ |
||||
{ |
||||
"Livechat_title": "Título Livechat", |
||||
"Livechat_title_color": "Cor de fundo do título do Livechat" |
||||
} |
||||
Loading…
Reference in new issue