mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 13:23:20 -07:00
wip
This commit is contained in:
parent
c82183b0e5
commit
28af02ccdd
4 changed files with 3 additions and 31 deletions
28
.github/workflows/create-artifacts.yml
vendored
28
.github/workflows/create-artifacts.yml
vendored
|
@ -63,21 +63,6 @@ jobs:
|
||||||
- os: win10-x64
|
- os: win10-x64
|
||||||
format: zip
|
format: zip
|
||||||
compression: zip
|
compression: zip
|
||||||
- os: win10-x86
|
|
||||||
format: zip
|
|
||||||
compression: zip
|
|
||||||
- os: linux-x64
|
|
||||||
format: tar.gz
|
|
||||||
compression: tar
|
|
||||||
- os: linux-arm
|
|
||||||
format: tar.gz
|
|
||||||
compression: tar
|
|
||||||
- os: linux-arm64
|
|
||||||
compression: tar
|
|
||||||
format: tar.gz
|
|
||||||
- os: osx-x64
|
|
||||||
compression: tar
|
|
||||||
format: tar.gz
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
@ -125,16 +110,3 @@ jobs:
|
||||||
name: ${{ matrix.os }}
|
name: ${{ matrix.os }}
|
||||||
path: |
|
path: |
|
||||||
./src/Ombi/${{ matrix.os }}.${{ matrix.format }}
|
./src/Ombi/${{ matrix.os }}.${{ matrix.format }}
|
||||||
|
|
||||||
release:
|
|
||||||
needs: [ publish, unit-test ]
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Download Artifacts
|
|
||||||
id: download
|
|
||||||
uses: actions/download-artifact@v2
|
|
||||||
with:
|
|
||||||
path: artifacts
|
|
||||||
|
|
||||||
|
|
|
@ -85,7 +85,8 @@ export class AppComponent implements OnInit {
|
||||||
}
|
}
|
||||||
|
|
||||||
public ngOnInit() {
|
public ngOnInit() {
|
||||||
this.settingsService.getCustomization().subscribe(x => {
|
this.customizationFacade.loadCustomziationSettings().subscribe();
|
||||||
|
this.customizationFacade.settings$().subscribe(x => {
|
||||||
this.customizationSettings = x;
|
this.customizationSettings = x;
|
||||||
if (this.customizationSettings && this.customizationSettings.applicationName) {
|
if (this.customizationSettings && this.customizationSettings.applicationName) {
|
||||||
this.applicationName = this.customizationSettings.applicationName;
|
this.applicationName = this.customizationSettings.applicationName;
|
||||||
|
|
|
@ -202,7 +202,6 @@ export function JwtTokenGetter() {
|
||||||
StorageService,
|
StorageService,
|
||||||
RequestService,
|
RequestService,
|
||||||
SignalRNotificationService,
|
SignalRNotificationService,
|
||||||
CUSTOMIZATION_INITIALIZER,
|
|
||||||
{
|
{
|
||||||
provide: APP_BASE_HREF,
|
provide: APP_BASE_HREF,
|
||||||
useValue: window["baseHref"]
|
useValue: window["baseHref"]
|
||||||
|
|
|
@ -78,7 +78,7 @@ export class MyNavComponent implements OnInit {
|
||||||
this.issuesEnabled = await this.settingsService.issueEnabled().toPromise();
|
this.issuesEnabled = await this.settingsService.issueEnabled().toPromise();
|
||||||
this.settingState.setIssue(this.issuesEnabled);
|
this.settingState.setIssue(this.issuesEnabled);
|
||||||
|
|
||||||
this.settingsService.getCustomization().subscribe(settings => {
|
this.customizationFacade.settings$().subscribe(settings => {
|
||||||
this.customizationSettings = settings;
|
this.customizationSettings = settings;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue