Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 0 additions & 30 deletions apps/account-functions/BUILD.bazel

This file was deleted.

13 changes: 0 additions & 13 deletions apps/account-functions/before-create.ts

This file was deleted.

34 changes: 0 additions & 34 deletions apps/account-functions/before-sign-in.ts

This file was deleted.

2 changes: 0 additions & 2 deletions apps/account-functions/index.ts

This file was deleted.

6 changes: 3 additions & 3 deletions apps/code-of-conduct/app/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
load("//tools:defaults.bzl", "ng_module")
load("@io_bazel_rules_sass//:defs.bzl", "sass_binary")
load("//tools:defaults.bzl", "ng_module")

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

Expand All @@ -13,9 +13,9 @@ ng_module(
"app.component.html",
],
deps = [
"//apps/code-of-conduct/app/account",
"//apps/code-of-conduct/app/block-user",
"//apps/code-of-conduct/app/user-table",
"//apps/shared/account",
"@npm//@angular/common",
"@npm//@angular/core",
"@npm//@angular/router",
Expand Down Expand Up @@ -47,9 +47,9 @@ ng_module(
"app.routes.ts",
],
deps = [
"//apps/code-of-conduct/app/account",
"//apps/code-of-conduct/app/login",
"//apps/code-of-conduct/app/main",
"//apps/shared/account",
"@npm//@angular/router",
],
)
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
load("//tools:defaults.bzl", "ng_module")
load("@io_bazel_rules_sass//:defs.bzl", "sass_binary")
load("//tools:defaults.bzl", "ng_module")

ng_module(
name = "account",
Expand Down
File renamed without changes.
10 changes: 2 additions & 8 deletions apps/code-of-conduct/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {Component} from '@angular/core';
import {MatToolbarModule} from '@angular/material/toolbar';
import {RouterModule} from '@angular/router';
import {AccountComponent} from '../../shared/account/account.component.js';
import {AccountComponent} from './account/account.component.js';
import {BlockUserComponent} from './block-user/block-user.component.js';
import {UserTableComponent} from './user-table/user-table.component.js';

Expand All @@ -10,12 +10,6 @@ import {UserTableComponent} from './user-table/user-table.component.js';
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
imports: [
MatToolbarModule,
RouterModule,
BlockUserComponent,
AccountComponent,
UserTableComponent,
],
imports: [MatToolbarModule, RouterModule, AccountComponent],
})
export class AppComponent {}
2 changes: 1 addition & 1 deletion apps/code-of-conduct/app/app.routes.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Routes} from '@angular/router';
import {isLoggedInGuard} from '../../shared/account/account.guard.js';
import {isLoggedInGuard} from './account/account.guard.js';

export const routes: Routes = [
{
Expand Down
4 changes: 2 additions & 2 deletions apps/code-of-conduct/app/login/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
load("//tools:defaults.bzl", "ng_module")
load("@io_bazel_rules_sass//:defs.bzl", "sass_binary")
load("//tools:defaults.bzl", "ng_module")

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

Expand All @@ -11,7 +11,7 @@ ng_module(
"login.component.html",
],
deps = [
"//apps/shared/account",
"//apps/code-of-conduct/app/account",
"@npm//@angular/common",
"@npm//@angular/core",
"@npm//@angular/material",
Expand Down
2 changes: 1 addition & 1 deletion apps/code-of-conduct/app/login/login.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {Component, inject, NgZone} from '@angular/core';
import {MatButtonModule} from '@angular/material/button';
import {MatCardModule} from '@angular/material/card';
import {Router} from '@angular/router';
import {AccountService} from '../../../shared/account/account.service.js';
import {AccountService} from '../account/account.service.js';

@Component({
standalone: true,
Expand Down
45 changes: 0 additions & 45 deletions apps/credential-service/BUILD.bazel

This file was deleted.

11 changes: 0 additions & 11 deletions apps/credential-service/Dockerfile

This file was deleted.

9 changes: 0 additions & 9 deletions apps/credential-service/deploy.sh

This file was deleted.

23 changes: 0 additions & 23 deletions apps/credential-service/lib/BUILD.bazel

This file was deleted.

Loading