Skip to content

Commit

Permalink
Role management with features
Browse files Browse the repository at this point in the history
  • Loading branch information
devyaniofficial committed Jan 9, 2024
1 parent d9d0fbf commit 6b82738
Show file tree
Hide file tree
Showing 53 changed files with 1,547 additions and 308 deletions.
39 changes: 19 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.
Binary file not shown.
16 changes: 8 additions & 8 deletions projects/arc-lib/src/lib/components/auth/auth-routing.module.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import {NgModule} from '@angular/core';
import {RouterModule, Routes} from '@angular/router';

import { AuthComponent } from './auth.component';
import { LoginComponent } from './login/login.component';
import { SignupComponent } from './signup/signup.component';
import { ForgotPasswordComponent } from './forgot-password/forgot-password.component';
import { ResetPasswordComponent } from './reset-password/reset-password.component';
import {AuthComponent} from './auth.component';
import {LoginComponent} from './login/login.component';
import {SignupComponent} from './signup/signup.component';
import {ForgotPasswordComponent} from './forgot-password/forgot-password.component';
import {ResetPasswordComponent} from './reset-password/reset-password.component';

const routes: Routes = [
{
Expand All @@ -27,7 +27,7 @@ const routes: Routes = [
{
path: 'resetpassword',
component: ResetPasswordComponent,
}
},
],
},
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
<router-outlet></router-outlet>
</nb-auth-block>
</nb-layout-column>
</nb-layout>
</nb-layout>
4 changes: 2 additions & 2 deletions projects/arc-lib/src/lib/components/auth/auth.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
.card-row {
flex-grow: 0 !important;
flex-shrink: 0 !important;
flex-basis: 35% !important;
}
flex-basis: 35% !important;
}
16 changes: 11 additions & 5 deletions projects/arc-lib/src/lib/components/auth/auth.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,18 @@ import {AuthRoutingModule} from './auth-routing.module';
import {AuthComponent} from './auth.component';
import {LoginComponent} from './login/login.component';

import { SignupComponent } from './signup/signup.component';
import { ForgotPasswordComponent } from './forgot-password/forgot-password.component';
import { ResetPasswordComponent } from './reset-password/reset-password.component';
import {SignupComponent} from './signup/signup.component';
import {ForgotPasswordComponent} from './forgot-password/forgot-password.component';
import {ResetPasswordComponent} from './reset-password/reset-password.component';

@NgModule({
declarations: [LoginComponent, AuthComponent, SignupComponent, ForgotPasswordComponent, ResetPasswordComponent],
declarations: [
LoginComponent,
AuthComponent,
SignupComponent,
ForgotPasswordComponent,
ResetPasswordComponent,
],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
imports: [
CommonModule,
Expand All @@ -29,7 +35,7 @@ import { ResetPasswordComponent } from './reset-password/reset-password.componen
HttpClientModule,
NbLayoutModule,
TranslateModule,
NbThemeModule.forRoot(),
NbThemeModule.forRoot({name: 'boiler'}),
NbAuthModule.forRoot({
strategies: [
NbPasswordAuthStrategy.setup({
Expand Down
Loading

0 comments on commit 6b82738

Please sign in to comment.