diff options
author | Mohamed Asgar Samiulla(ma926a) <ma926a@us.att.com> | 2018-04-02 19:00:49 +0530 |
---|---|---|
committer | Skip Wonnell <skip@att.com> | 2018-04-09 11:24:18 -0500 |
commit | d7dffc2d1c65788e68a7fabdc16e5afd90de0f67 (patch) | |
tree | a5fef0028c4c325f11c464c8cfb39858ecc5ac8b /src/app/app.module.ts | |
parent | f27d5549734324727a5432f6ff663b0880425f47 (diff) |
[Appc-1806] Login for Test screen, test api urls.
Test API urls corrected and vserverid removed from poll request.
Issue-ID: APPC-831
Change-Id: I0bc616888afee8683ccbf5238980e97c6ca51af6
Signed-off-by: Mohamed Asgar Samiulla(ma926a) <ma926a@us.att.com>
Diffstat (limited to 'src/app/app.module.ts')
-rw-r--r-- | src/app/app.module.ts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 4824351..df9bf07 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -16,8 +16,6 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - -ECOMP is a trademark and service mark of AT&T Intellectual Property. ============LICENSE_END============================================ */ @@ -36,16 +34,17 @@ import {RouterModule} from '@angular/router'; import {TestComponent} from './test/test.component'; import {AboutUsComponent} from './about-us/aboutus.component'; import {NgProgressModule} from 'ngx-progressbar'; +import {LoginGuardService} from './vnfs/LoginGuardService/Login-guard-service'; @NgModule({ declarations: [AppComponent, TestComponent, AboutUsComponent], imports: [BrowserModule, FormsModule, HomeModule, SharedModule.forRoot(), NgbModule.forRoot(), NoopAnimationsModule, AppRoutingModule, SimpleNotificationsModule, NgProgressModule], exports: [RouterModule], - providers: [{provide: LocationStrategy, useClass: HashLocationStrategy}], + providers: [{provide: LocationStrategy, useClass: HashLocationStrategy}, LoginGuardService], bootstrap: [AppComponent] }) export class AppModule { -}
\ No newline at end of file +} |