<label i18n for="role">Role</label>
<div class="peertube-select-container">
<select id="role" formControlName="role">
- <option *ngFor="let role of getRoles()" [value]="role.value">
+ <option *ngFor="let role of roles" [value]="role.value">
{{ role.label }}
</option>
</select>
username: string
userId: number
+ roles: { value: string, label: string }[] = []
+
protected serverConfig: ServerConfig
protected abstract serverService: ServerService
this.serverConfig = this.serverService.getTmpConfig()
this.serverService.getConfig()
.subscribe(config => this.serverConfig = config)
+
+ this.buildRoles()
}
- getRoles () {
+ buildRoles () {
const authUser = this.auth.getUser()
if (authUser.role === UserRole.ADMINISTRATOR) {
- return Object.keys(USER_ROLE_LABELS)
+ this.roles = Object.keys(USER_ROLE_LABELS)
.map(key => ({ value: key.toString(), label: USER_ROLE_LABELS[key] }))
+ return
}
- return [
+ this.roles = [
{ value: UserRole.USER.toString(), label: USER_ROLE_LABELS[UserRole.USER] }
]
}