-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
issue-181, created ci job for ui and fixed ui gracefuly
- Loading branch information
Showing
21 changed files
with
84 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,27 @@ | ||
os: linux | ||
|
||
language: go | ||
go: | ||
- 1.13.11 | ||
|
||
env: | ||
- GO111MODULE=on | ||
|
||
install: | ||
- curl -L https://github.com/golang-migrate/migrate/releases/download/v4.11.0/migrate.linux-amd64.tar.gz | tar xvz | ||
|
||
# Don't email me the results of the test runs. | ||
notifications: | ||
email: false | ||
|
||
script: | ||
- go build ./cmd/ims | ||
- go build ./cmd/rbac | ||
- go build ./cmd/rbacgen | ||
|
||
after_success: | ||
- echo "Process Done." | ||
matrix: | ||
include: | ||
- language: go | ||
go: | ||
- 1.13.11 | ||
env: | ||
- GO111MODULE=on | ||
install: | ||
- curl -L https://github.com/golang-migrate/migrate/releases/download/v4.11.0/migrate.linux-amd64.tar.gz | tar xvz | ||
script: | ||
- go build ./cmd/ims | ||
- go build ./cmd/rbac | ||
- go build ./cmd/rbacgen | ||
after_success: | ||
- echo "Process Done." | ||
- language: node_js | ||
node_js: | ||
- "14.3.0" | ||
before_script: | ||
- npm install -g @angular/cli | ||
- cd ui | ||
script: | ||
- npm install | ||
- npm run build | ||
- npm run prettier | ||
- npm run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import {Component, OnInit} from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-admin', | ||
templateUrl: './admin.component.html', | ||
styleUrls: ['./admin.component.sass'] | ||
styleUrls: ['./admin.component.sass'], | ||
}) | ||
export class AdminComponent implements OnInit { | ||
constructor() {} | ||
|
||
constructor() { } | ||
|
||
ngOnInit(): void { | ||
} | ||
|
||
ngOnInit(): void {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
|
||
|
||
import {NgModule} from '@angular/core'; | ||
import {CommonModule} from '@angular/common'; | ||
|
||
@NgModule({ | ||
declarations: [], | ||
imports: [ | ||
CommonModule | ||
] | ||
imports: [CommonModule], | ||
}) | ||
export class AuthModule { } | ||
export class AuthModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import {Component, OnInit} from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-error-page', | ||
templateUrl: './error-page.component.html', | ||
styleUrls: ['./error-page.component.sass'] | ||
styleUrls: ['./error-page.component.sass'], | ||
}) | ||
export class ErrorPageComponent implements OnInit { | ||
constructor() {} | ||
|
||
constructor() { } | ||
|
||
ngOnInit(): void { | ||
} | ||
|
||
ngOnInit(): void {} | ||
} |
11 changes: 4 additions & 7 deletions
11
ui/src/app/landing-page/landing-header/landing-header.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import {Component, OnInit} from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-landing-header', | ||
templateUrl: './landing-header.component.html', | ||
styleUrls: ['./landing-header.component.sass'] | ||
styleUrls: ['./landing-header.component.sass'], | ||
}) | ||
export class LandingHeaderComponent implements OnInit { | ||
constructor() {} | ||
|
||
constructor() { } | ||
|
||
ngOnInit(): void { | ||
} | ||
|
||
ngOnInit(): void {} | ||
} |
11 changes: 4 additions & 7 deletions
11
ui/src/app/landing-page/landing-main-content/landing-main-content.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import {Component, OnInit} from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-landing-main-content', | ||
templateUrl: './landing-main-content.component.html', | ||
styleUrls: ['./landing-main-content.component.sass'] | ||
styleUrls: ['./landing-main-content.component.sass'], | ||
}) | ||
export class LandingMainContentComponent implements OnInit { | ||
constructor() {} | ||
|
||
constructor() { } | ||
|
||
ngOnInit(): void { | ||
} | ||
|
||
ngOnInit(): void {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import {Component, OnInit} from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-landing-page', | ||
templateUrl: './landing-page.component.html', | ||
styleUrls: ['./landing-page.component.sass'] | ||
styleUrls: ['./landing-page.component.sass'], | ||
}) | ||
export class LandingPageComponent implements OnInit { | ||
constructor() {} | ||
|
||
constructor() { } | ||
|
||
ngOnInit(): void { | ||
} | ||
|
||
ngOnInit(): void {} | ||
} |
11 changes: 4 additions & 7 deletions
11
ui/src/app/landing-page/landing-sidenav/landing-sidenav.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import {Component, OnInit} from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-landing-sidenav', | ||
templateUrl: './landing-sidenav.component.html', | ||
styleUrls: ['./landing-sidenav.component.sass'] | ||
styleUrls: ['./landing-sidenav.component.sass'], | ||
}) | ||
export class LandingSidenavComponent implements OnInit { | ||
constructor() {} | ||
|
||
constructor() { } | ||
|
||
ngOnInit(): void { | ||
} | ||
|
||
ngOnInit(): void {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export interface iSubject { | ||
export interface ISubject { | ||
id: string; | ||
nameOfSubject: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import {Component, OnInit} from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-timetable', | ||
templateUrl: './timetable.component.html', | ||
styleUrls: ['./timetable.component.sass'] | ||
styleUrls: ['./timetable.component.sass'], | ||
}) | ||
export class TimetableComponent implements OnInit { | ||
constructor() {} | ||
|
||
constructor() { } | ||
|
||
ngOnInit(): void { | ||
} | ||
|
||
ngOnInit(): void {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.