Rename board settings to board admin
This commit is contained in:
parent
f0ba3956d4
commit
0577661791
@ -14,12 +14,12 @@ import {
|
|||||||
import { BoardData } from './board-data.model';
|
import { BoardData } from './board-data.model';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'tb-board-settings',
|
selector: 'tb-board-admin',
|
||||||
templateUrl: 'app/settings/board-settings/board-settings.component.html',
|
templateUrl: 'app/settings/board-settings/board-settings.component.html',
|
||||||
directives: [ Modal, Dragula ],
|
directives: [ Modal, Dragula ],
|
||||||
viewProviders: [ DragulaService ]
|
viewProviders: [ DragulaService ]
|
||||||
})
|
})
|
||||||
export class BoardSettings {
|
export class BoardAdmin {
|
||||||
private activeUser: User;
|
private activeUser: User;
|
||||||
private loading = true;
|
private loading = true;
|
||||||
private modalProps: BoardData;
|
private modalProps: BoardData;
|
@ -1,4 +1,4 @@
|
|||||||
export * from './user-admin/user-admin.component';
|
export * from './user-admin/user-admin.component';
|
||||||
export * from './user-settings/user-settings.component';
|
export * from './user-settings/user-settings.component';
|
||||||
export * from './board-settings/board-settings.component';
|
export * from './board-admin/board-admin.component';
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="half-page">
|
<div class="half-page">
|
||||||
<tb-board-settings></tb-board-settings>
|
<tb-board-admin></tb-board-admin>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<h2>Automatic Actions</h2>
|
<h2>Automatic Actions</h2>
|
||||||
|
@ -4,7 +4,7 @@ import { TopNav } from '../shared/index';
|
|||||||
import {
|
import {
|
||||||
UserSettings,
|
UserSettings,
|
||||||
UserAdmin,
|
UserAdmin,
|
||||||
BoardSettings
|
BoardAdmin
|
||||||
} from './index';
|
} from './index';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@ -14,7 +14,7 @@ import {
|
|||||||
TopNav,
|
TopNav,
|
||||||
UserSettings,
|
UserSettings,
|
||||||
UserAdmin,
|
UserAdmin,
|
||||||
BoardSettings
|
BoardAdmin
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
export class Settings {
|
export class Settings {
|
||||||
|
Reference in New Issue
Block a user