Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
914e6b3
minor GUI changes - refresh after upload/request, new icons and more
TSimonEvolveum Dec 5, 2025
f666178
#3850 - Align the implementation of the GUI for the integration catal…
TSimonEvolveum Dec 10, 2025
3d406ee
#3850 - Align the implementation of the GUI for the integration catal…
TSimonEvolveum Dec 11, 2025
079b0ad
#3850 - Align the implementation of the GUI for the integration catal…
TSimonEvolveum Dec 15, 2025
a5c3889
#3850 - Align the implementation of the GUI for the integration catal…
TSimonEvolveum Dec 15, 2025
5def684
#3851 - WP4 – GUI – Support for Storing application logos to the file…
TSimonEvolveum Dec 18, 2025
6d61399
#3851 - WP4 – GUI – Support for Storing application logos to the file…
TSimonEvolveum Jan 7, 2026
7a9f671
#4282 WP4 - Received review feedback and needed changes - changes to …
TSimonEvolveum Jan 20, 2026
c361c20
#4284 WP4 - Received review feedback and needed changes for PR - Appl…
TSimonEvolveum Jan 22, 2026
eef15db
#4287 WP4 - Received review feedback for frontend and backend - chang…
TSimonEvolveum Jan 26, 2026
f2c995c
Merge remote-tracking branch 'origin/main' into office-day-fixies
TSimonEvolveum Jan 26, 2026
78016c5
#4287 WP4 - Received review feedback for frontend and backend - fixes…
TSimonEvolveum Jan 26, 2026
490ad6f
Code cleanup - duplicate functions, stability, dependency Injection, …
TSimonEvolveum Feb 9, 2026
1d1f730
#4115 WP4 - Change FrameworkType(CONNID, SCIM_REST) to FrameworkType(…
TSimonEvolveum Feb 11, 2026
896f1eb
#4102 WP4 - Backend of exporting connectors - initial commit for JSON…
TSimonEvolveum Feb 13, 2026
0698858
fixing and updating request form on frontend
TSimonEvolveum Feb 25, 2026
6edc8a4
fixing and updating publish/upload form on frontend
TSimonEvolveum Feb 27, 2026
157f1e2
fixing and updating publish/upload form on frontend
TSimonEvolveum Mar 5, 2026
4921551
fixing and updating publish/upload form on frontend
TSimonEvolveum Mar 12, 2026
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
17 changes: 12 additions & 5 deletions angular-frontend/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"standalone": true
"standalone": true,
"style": "scss"
},
"@schematics/angular:directive": {
"standalone": true
Expand Down Expand Up @@ -42,8 +43,11 @@
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"node_modules/@ng-select/ng-select/themes/default.theme.css",
"src/styles.css"
]
"src/styles.scss"
],
"stylePreprocessorOptions": {
"includePaths": ["src/styles"]
}
},
"configurations": {
"production": {
Expand Down Expand Up @@ -115,8 +119,11 @@
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"node_modules/@ng-select/ng-select/themes/default.theme.css",
"src/styles.css"
]
"src/styles.scss"
],
"stylePreprocessorOptions": {
"includePaths": ["src/styles"]
}
}
}
}
Expand Down
10 changes: 10 additions & 0 deletions angular-frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions angular-frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"@angular/forms": "^20.3.0",
"@angular/platform-browser": "^20.3.0",
"@angular/router": "^20.3.0",
"@fortawesome/fontawesome-free": "^7.1.0",
"@ng-select/ng-select": "^20.7.0",
"bootstrap": "^5.3.8",
"rxjs": "~7.8.0",
Expand Down
4 changes: 0 additions & 4 deletions angular-frontend/public/icon gear.svg

This file was deleted.

12 changes: 0 additions & 12 deletions angular-frontend/src/_variables.css

This file was deleted.

2 changes: 1 addition & 1 deletion angular-frontend/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { RouterOutlet } from '@angular/router';
selector: 'app-root',
imports: [RouterOutlet],
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'ic-frontend';
Expand Down
4 changes: 3 additions & 1 deletion angular-frontend/src/app/app.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
import { Routes } from '@angular/router';
import { ApplicationsList } from './components/applications-list/applications-list';
import { ApplicationDetail } from './components/application-detail/application-detail';
import { UploadFormMain } from './components/upload-form-main/upload-form-main';

export const routes: Routes = [
{ path: '', redirectTo: '/applications', pathMatch: 'full' },
{ path: 'applications', component: ApplicationsList },
{ path: 'applications/:id', component: ApplicationDetail }
{ path: 'applications/:id', component: ApplicationDetail },
{ path: 'publish', component: UploadFormMain }
];
File renamed without changes.
2 changes: 1 addition & 1 deletion angular-frontend/src/app/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { RouterOutlet } from '@angular/router';
standalone: true,
imports: [RouterOutlet],
templateUrl: './app.html',
styleUrls: ['./app.css']
styleUrls: ['./app.scss']
})
export class App {
protected readonly title = signal('ic-frontend-ngmodule');
Expand Down

This file was deleted.

Loading