Skip to content

Commit 3fa46e7

Browse files
committed
refactor(apps): remove unused and stalled development items from apps/
Remove code which is unused, deprecated and/or not needed anymore in the apps directory.
1 parent d09cc27 commit 3fa46e7

File tree

88 files changed

+19
-2359
lines changed

Some content is hidden

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

88 files changed

+19
-2359
lines changed

apps/account-functions/BUILD.bazel

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

apps/account-functions/before-create.ts

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

apps/account-functions/before-sign-in.ts

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

apps/account-functions/index.ts

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

apps/code-of-conduct/app/BUILD.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
load("//tools:defaults.bzl", "ng_module")
21
load("@io_bazel_rules_sass//:defs.bzl", "sass_binary")
2+
load("//tools:defaults.bzl", "ng_module")
33

44
package(default_visibility = ["//apps/code-of-conduct:__subpackages__"])
55

@@ -13,9 +13,9 @@ ng_module(
1313
"app.component.html",
1414
],
1515
deps = [
16+
"//apps/code-of-conduct/app/account",
1617
"//apps/code-of-conduct/app/block-user",
1718
"//apps/code-of-conduct/app/user-table",
18-
"//apps/shared/account",
1919
"@npm//@angular/common",
2020
"@npm//@angular/core",
2121
"@npm//@angular/router",
@@ -47,9 +47,9 @@ ng_module(
4747
"app.routes.ts",
4848
],
4949
deps = [
50+
"//apps/code-of-conduct/app/account",
5051
"//apps/code-of-conduct/app/login",
5152
"//apps/code-of-conduct/app/main",
52-
"//apps/shared/account",
5353
"@npm//@angular/router",
5454
],
5555
)
Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {Component} from '@angular/core';
22
import {MatToolbarModule} from '@angular/material/toolbar';
33
import {RouterModule} from '@angular/router';
4-
import {AccountComponent} from '../../shared/account/account.component.js';
4+
import {AccountComponent} from './account/account.component.js';
55
import {BlockUserComponent} from './block-user/block-user.component.js';
66
import {UserTableComponent} from './user-table/user-table.component.js';
77

@@ -10,12 +10,6 @@ import {UserTableComponent} from './user-table/user-table.component.js';
1010
selector: 'app-root',
1111
templateUrl: './app.component.html',
1212
styleUrls: ['./app.component.scss'],
13-
imports: [
14-
MatToolbarModule,
15-
RouterModule,
16-
BlockUserComponent,
17-
AccountComponent,
18-
UserTableComponent,
19-
],
13+
imports: [MatToolbarModule, RouterModule, AccountComponent],
2014
})
2115
export class AppComponent {}

apps/code-of-conduct/app/app.routes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {Routes} from '@angular/router';
2-
import {isLoggedInGuard} from '../../shared/account/account.guard.js';
2+
import {isLoggedInGuard} from './account/account.guard.js';
33

44
export const routes: Routes = [
55
{

apps/code-of-conduct/app/login/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
load("//tools:defaults.bzl", "ng_module")
21
load("@io_bazel_rules_sass//:defs.bzl", "sass_binary")
2+
load("//tools:defaults.bzl", "ng_module")
33

44
package(default_visibility = ["//apps/code-of-conduct:__subpackages__"])
55

@@ -11,7 +11,7 @@ ng_module(
1111
"login.component.html",
1212
],
1313
deps = [
14-
"//apps/shared/account",
14+
"//apps/code-of-conduct/app/account",
1515
"@npm//@angular/common",
1616
"@npm//@angular/core",
1717
"@npm//@angular/material",

apps/code-of-conduct/app/login/login.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {Component, inject, NgZone} from '@angular/core';
33
import {MatButtonModule} from '@angular/material/button';
44
import {MatCardModule} from '@angular/material/card';
55
import {Router} from '@angular/router';
6-
import {AccountService} from '../../../shared/account/account.service.js';
6+
import {AccountService} from '../account/account.service.js';
77

88
@Component({
99
standalone: true,

apps/credential-service/BUILD.bazel

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

0 commit comments

Comments
 (0)