Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F124096249
surveylist.component.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Jul 31, 09:58
Size
629 B
Mime Type
text/x-java
Expires
Sat, Aug 2, 09:58 (2 d)
Engine
blob
Format
Raw Data
Handle
27803181
Attached To
R8244 Eawag_Swing_Weight_Elicitation
surveylist.component.ts
View Options
import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
import { AuthenticationService } from '../authentication.service';
@Component({
selector: 'app-surveylist',
templateUrl: './surveylist.component.html',
styleUrls: ['./surveylist.component.css']
})
export class SurveylistComponent implements OnInit {
constructor(public auth: AuthenticationService, private router: Router) { }
admin(){
this.router.navigateByUrl('/admin');
}
results(){
this.router.navigateByUrl('/results');
}
newsurvey(){
this.router.navigateByUrl('/newsurvey');
}
ngOnInit() {
}
}
Event Timeline
Log In to Comment