summaryrefslogtreecommitdiffstats
path: root/src/app/vnfs/userlogin-form/userlogin-form.component.ts
diff options
context:
space:
mode:
authorMohamed Asgar Samiulla(ma926a) <ma926a@us.att.com>2018-04-02 19:00:49 +0530
committerSkip Wonnell <skip@att.com>2018-04-09 11:24:18 -0500
commitd7dffc2d1c65788e68a7fabdc16e5afd90de0f67 (patch)
treea5fef0028c4c325f11c464c8cfb39858ecc5ac8b /src/app/vnfs/userlogin-form/userlogin-form.component.ts
parentf27d5549734324727a5432f6ff663b0880425f47 (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/vnfs/userlogin-form/userlogin-form.component.ts')
-rw-r--r--src/app/vnfs/userlogin-form/userlogin-form.component.ts16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/app/vnfs/userlogin-form/userlogin-form.component.ts b/src/app/vnfs/userlogin-form/userlogin-form.component.ts
index dfb665e..188fe81 100644
--- a/src/app/vnfs/userlogin-form/userlogin-form.component.ts
+++ b/src/app/vnfs/userlogin-form/userlogin-form.component.ts
@@ -16,36 +16,38 @@ 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============================================
*/
import {Component, OnInit} from '@angular/core';
-import {Router} from '@angular/router';
+
+import { ActivatedRoute } from '@angular/router';
import {EmitterService} from '../../shared/services/emitter.service';
+import {Router} from '@angular/router';
import {UtilityService} from '../../shared/services/utilityService/utility.service';
@Component({selector: 'app-mvnfs-form', templateUrl: './userlogin-form.component.html', styleUrls: ['./userlogin-form.component.css']})
export class userloginFormComponent implements OnInit {
userId: string = '';
+ returnUrl:string
- constructor(private router: Router, private utiltiy: UtilityService) {
+ constructor(private router: Router, private utiltiy: UtilityService, private route: ActivatedRoute
+ ) {
}
ngOnInit() {
+ this.returnUrl = this.route.snapshot.queryParams['returnUrl'] || '/home';
}
+
getData() {
localStorage['userId'] = this.userId;
localStorage['apiToken'] = this.utiltiy.randomId();
EmitterService
.get('userLogin')
.emit(this.userId);
- this
- .router
- .navigate(['vnfs', 'list']);
+ this.router.navigateByUrl(this.returnUrl);
}
}