Skip Wonnell | 2c977e2 | 2018-03-01 08:30:15 -0600 | [diff] [blame] | 1 | /* |
| 2 | ============LICENSE_START========================================== |
| 3 | =================================================================== |
| 4 | Copyright (C) 2018 AT&T Intellectual Property. All rights reserved. |
Arundathi Patil | df3a86f | 2018-08-13 15:22:03 +0530 | [diff] [blame] | 5 | |
| 6 | Copyright (C) 2018 IBM. |
Skip Wonnell | 2c977e2 | 2018-03-01 08:30:15 -0600 | [diff] [blame] | 7 | =================================================================== |
| 8 | |
| 9 | Unless otherwise specified, all software contained herein is licensed |
| 10 | under the Apache License, Version 2.0 (the License); |
| 11 | you may not use this software except in compliance with the License. |
| 12 | You may obtain a copy of the License at |
| 13 | |
| 14 | http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | |
| 16 | Unless required by applicable law or agreed to in writing, software |
| 17 | distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | See the License for the specific language governing permissions and |
| 20 | limitations under the License. |
| 21 | |
Skip Wonnell | 2c977e2 | 2018-03-01 08:30:15 -0600 | [diff] [blame] | 22 | ============LICENSE_END============================================ */ |
| 23 | |
| 24 | import {Component, OnInit} from '@angular/core'; |
asgar | af56b68 | 2019-03-08 19:52:33 +0530 | [diff] [blame^] | 25 | import {NgbActiveModal} from '@ng-bootstrap/ng-bootstrap'; |
Skip Wonnell | 2c977e2 | 2018-03-01 08:30:15 -0600 | [diff] [blame] | 26 | |
| 27 | @Component({ |
| 28 | selector: 'app-auth-guard-modal', |
| 29 | templateUrl: './auth-guard-modal.html', |
| 30 | styleUrls: ['./auth-guard-modal.css'] |
| 31 | }) |
| 32 | export class AuthGuardModalComponent implements OnInit { |
| 33 | |
asgar | af56b68 | 2019-03-08 19:52:33 +0530 | [diff] [blame^] | 34 | constructor(public activeModal: NgbActiveModal) { |
Skip Wonnell | 2c977e2 | 2018-03-01 08:30:15 -0600 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | ngOnInit() { |
| 38 | } |
| 39 | |
| 40 | } |