1
0
mirror of https://github.com/flarum/core.git synced 2025-07-26 03:01:22 +02:00

Update for composer branch

This commit is contained in:
Toby Zerner
2015-10-13 12:29:00 +10:30
parent f5c9fd5d8d
commit fd3d2d83f1
24 changed files with 498 additions and 245 deletions

View File

@@ -13,17 +13,17 @@ export default class PusherSettingsModal extends SettingsModal {
return [
<div className="Form-group">
<label>App ID</label>
<input className="FormControl" bidi={this.setting('pusher.app_id')}/>
<input className="FormControl" bidi={this.setting('flarum-pusher.app_id')}/>
</div>,
<div className="Form-group">
<label>App Key</label>
<input className="FormControl" bidi={this.setting('pusher.app_key')}/>
<input className="FormControl" bidi={this.setting('flarum-pusher.app_key')}/>
</div>,
<div className="Form-group">
<label>App Secret</label>
<input className="FormControl" bidi={this.setting('pusher.app_secret')}/>
<input className="FormControl" bidi={this.setting('flarum-pusher.app_secret')}/>
</div>
];
}