Skip to content

Commit 6b82738

Browse files
Role management with features
1 parent d9d0fbf commit 6b82738

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1547
-308
lines changed

package-lock.json

Lines changed: 19 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.
Binary file not shown.

projects/arc-lib/src/lib/components/auth/auth-routing.module.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { NgModule } from '@angular/core';
2-
import { RouterModule, Routes } from '@angular/router';
1+
import {NgModule} from '@angular/core';
2+
import {RouterModule, Routes} from '@angular/router';
33

4-
import { AuthComponent } from './auth.component';
5-
import { LoginComponent } from './login/login.component';
6-
import { SignupComponent } from './signup/signup.component';
7-
import { ForgotPasswordComponent } from './forgot-password/forgot-password.component';
8-
import { ResetPasswordComponent } from './reset-password/reset-password.component';
4+
import {AuthComponent} from './auth.component';
5+
import {LoginComponent} from './login/login.component';
6+
import {SignupComponent} from './signup/signup.component';
7+
import {ForgotPasswordComponent} from './forgot-password/forgot-password.component';
8+
import {ResetPasswordComponent} from './reset-password/reset-password.component';
99

1010
const routes: Routes = [
1111
{
@@ -27,7 +27,7 @@ const routes: Routes = [
2727
{
2828
path: 'resetpassword',
2929
component: ResetPasswordComponent,
30-
}
30+
},
3131
],
3232
},
3333
];

projects/arc-lib/src/lib/components/auth/auth.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
<router-outlet></router-outlet>
1515
</nb-auth-block>
1616
</nb-layout-column>
17-
</nb-layout>
17+
</nb-layout>

projects/arc-lib/src/lib/components/auth/auth.component.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
.card-row {
2929
flex-grow: 0 !important;
3030
flex-shrink: 0 !important;
31-
flex-basis: 35% !important;
32-
}
31+
flex-basis: 35% !important;
32+
}

projects/arc-lib/src/lib/components/auth/auth.module.ts

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,18 @@ import {AuthRoutingModule} from './auth-routing.module';
1212
import {AuthComponent} from './auth.component';
1313
import {LoginComponent} from './login/login.component';
1414

15-
import { SignupComponent } from './signup/signup.component';
16-
import { ForgotPasswordComponent } from './forgot-password/forgot-password.component';
17-
import { ResetPasswordComponent } from './reset-password/reset-password.component';
15+
import {SignupComponent} from './signup/signup.component';
16+
import {ForgotPasswordComponent} from './forgot-password/forgot-password.component';
17+
import {ResetPasswordComponent} from './reset-password/reset-password.component';
1818

1919
@NgModule({
20-
declarations: [LoginComponent, AuthComponent, SignupComponent, ForgotPasswordComponent, ResetPasswordComponent],
20+
declarations: [
21+
LoginComponent,
22+
AuthComponent,
23+
SignupComponent,
24+
ForgotPasswordComponent,
25+
ResetPasswordComponent,
26+
],
2127
schemas: [CUSTOM_ELEMENTS_SCHEMA],
2228
imports: [
2329
CommonModule,
@@ -29,7 +35,7 @@ import { ResetPasswordComponent } from './reset-password/reset-password.componen
2935
HttpClientModule,
3036
NbLayoutModule,
3137
TranslateModule,
32-
NbThemeModule.forRoot(),
38+
NbThemeModule.forRoot({name: 'boiler'}),
3339
NbAuthModule.forRoot({
3440
strategies: [
3541
NbPasswordAuthStrategy.setup({

0 commit comments

Comments
 (0)