Skip to content

Commit ec0ef9f

Browse files
committed
Cleaned the application and added text to the home page
1 parent e1c53d7 commit ec0ef9f

15 files changed

+17
-219
lines changed

Auth0AngularSpa/ClientAngular.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@
3131
<TypeScriptCompile Include="ClientApp\src\app\auth\auth0-variables.ts" />
3232
</ItemGroup>
3333

34+
<ItemGroup>
35+
<Folder Include="Controllers\" />
36+
</ItemGroup>
37+
3438
<Target Name="DebugEnsureNodeEnv" BeforeTargets="Build" Condition=" '$(Configuration)' == 'Debug' And !Exists('$(SpaRoot)node_modules') ">
3539
<!-- Ensure Node.js is installed -->
3640
<Exec Command="node --version" ContinueOnError="true">

Auth0AngularSpa/ClientApp/src/app/app.module.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,19 @@ import { RouterModule } from '@angular/router';
77
import { AppComponent } from './app.component';
88
import { NavMenuComponent } from './nav-menu/nav-menu.component';
99
import { HomeComponent } from './home/home.component';
10-
import { CounterComponent } from './counter/counter.component';
11-
import { FetchDataComponent } from './fetch-data/fetch-data.component';
1210

1311
import { AuthService } from './auth/auth.service';
1412
import { UserComponent } from './user/user.component';
1513
import { ProfileComponent } from './profile/profile.component';
16-
import { CallbackComponent } from './callback/callback.component';
1714
import { TestComponent } from './test/test.component';
1815

1916
@NgModule({
2017
declarations: [
2118
AppComponent,
2219
NavMenuComponent,
2320
HomeComponent,
24-
CounterComponent,
25-
FetchDataComponent,
2621
UserComponent,
2722
ProfileComponent,
28-
CallbackComponent,
2923
TestComponent
3024
],
3125
imports: [
@@ -34,8 +28,6 @@ import { TestComponent } from './test/test.component';
3428
FormsModule,
3529
RouterModule.forRoot([
3630
{ path: '', component: HomeComponent, pathMatch: 'full' },
37-
{ path: 'counter', component: CounterComponent },
38-
{ path: 'fetch-data', component: FetchDataComponent },
3931
{ path: 'profile', component: ProfileComponent },
4032
{ path: 'userinfo', component: UserComponent },
4133
{ path: 'test', component: TestComponent },

Auth0AngularSpa/ClientApp/src/app/callback/callback.component.css

Whitespace-only changes.

Auth0AngularSpa/ClientApp/src/app/callback/callback.component.html

Lines changed: 0 additions & 3 deletions
This file was deleted.

Auth0AngularSpa/ClientApp/src/app/callback/callback.component.spec.ts

Lines changed: 0 additions & 25 deletions
This file was deleted.

Auth0AngularSpa/ClientApp/src/app/callback/callback.component.ts

Lines changed: 0 additions & 15 deletions
This file was deleted.

Auth0AngularSpa/ClientApp/src/app/counter/counter.component.html

Lines changed: 0 additions & 7 deletions
This file was deleted.

Auth0AngularSpa/ClientApp/src/app/counter/counter.component.spec.ts

Lines changed: 0 additions & 36 deletions
This file was deleted.

Auth0AngularSpa/ClientApp/src/app/counter/counter.component.ts

Lines changed: 0 additions & 13 deletions
This file was deleted.

Auth0AngularSpa/ClientApp/src/app/fetch-data/fetch-data.component.html

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)