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