Skip to content

Commit

Permalink
Revert "fix(auth): remove unused module (#1615)"
Browse files Browse the repository at this point in the history
This reverts commit 831f264.
  • Loading branch information
alecarn committed Jan 30, 2024
1 parent ecd7013 commit bfb4f46
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions packages/auth/src/lib/auth-routing.module.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';

import { AuthFormComponent } from './auth-form/auth-form.component';

const routes: Routes = [
{ path: 'login', component: AuthFormComponent },
{ path: 'logout', component: AuthFormComponent }
];

@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
providers: []
})
export class AuthRoutingModule {}
1 change: 1 addition & 0 deletions packages/auth/src/public_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ export * from './lib/shared/auth-storage.interface';
export * from './lib/shared/auth-storage.service';
export * from './lib/auth-monitoring/auth-monitoring.provider';
export * from './lib/auth-monitoring/auth-monitoring.service';
export * from './lib/auth-routing.module';
export * from './lib/auth.module';

0 comments on commit bfb4f46

Please sign in to comment.