dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#0 fix - Added missing polifills
rsanchez
2017-04-13
240947c12699e9dc614bf6bcb7b8ffde9a230963
[common/securis.git]
/
securis
/
src
/
main
/
webapp
/
src
/
app
/
resources
/
users.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { Observable } from 'rxjs/Rx';
import { Injectable } from '@angular/core';
import { Http, RequestOptions } from '@angular/http';
import { SeCurisResourceServices } from './base';
import { LocaleService } from '../common/i18n';
var user_example = {
creation_timestamp: 1479898458000,
email: 'rbouchair@curistec.com',
first_name: 'Rym',
lastLogin: 1488885433000,
last_name: 'Bouchair',
modificationTimestamp: 1479898458000,
organizations_ids: [ 1, 2, 5, 6, 7, 8 ],
roles: [ 1 ],
username: 'rym' }
@Injectable()
export class UsersService extends SeCurisResourceServices {
constructor(http: Http, $L: LocaleService) {
super($L, http, 'user');
}
}