-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Correctly wired in servide broker to service plan availability function
- Loading branch information
1 parent
d7ff98b
commit b5989bc
Showing
44 changed files
with
946 additions
and
340 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
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
4 changes: 1 addition & 3 deletions
4
src/frontend/app/features/service-catalog/service-plans/service-plans.component.html
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,3 +1 @@ | ||
<p> | ||
service-plans works! | ||
</p> | ||
<app-list></app-list> |
20 changes: 14 additions & 6 deletions
20
src/frontend/app/features/service-catalog/service-plans/service-plans.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,11 +1,19 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import { Component } from '@angular/core'; | ||
|
||
import { | ||
ServicePlansListConfigService, | ||
} from '../../../shared/components/list/list-types/service-plans/service-plans-list-config.service'; | ||
import { ListConfig } from '../../../shared/components/list/list.component.types'; | ||
|
||
@Component({ | ||
selector: 'app-service-plans', | ||
templateUrl: './service-plans.component.html', | ||
styleUrls: ['./service-plans.component.scss'] | ||
styleUrls: ['./service-plans.component.scss'], | ||
providers: [ | ||
{ | ||
provide: ListConfig, | ||
useClass: ServicePlansListConfigService | ||
} | ||
] | ||
}) | ||
export class ServicePlansComponent { | ||
|
||
constructor() { } | ||
} | ||
export class ServicePlansComponent { } |
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
Oops, something went wrong.