@@ -7,97 +7,109 @@ import { ITeam, IMember } from './team.models';
7
7
@Injectable ( )
8
8
export class TeamService {
9
9
getTeam ( ) : Observable < ITeam > {
10
- return Observable . from ( [ {
11
- coreTeam : [ {
12
- 'name' : 'Ben Lesh' ,
13
- 'role' : 'Developer' ,
14
- 'githubUrl' : 'https://github.com/benlesh' ,
15
- 'avatar' : 'https://github.com/benlesh.png' ,
16
- 'twitterUrl' : 'https://twitter.com/BenLesh' ,
17
- 'linkedinUrl' : 'https://www.linkedin.com/in/blesh/' ,
18
- 'bio' :
19
- 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. ' +
20
- 'Sed est odio, sodales et tellus a, semper pellentesque elit. ' +
21
- 'Mauris purus dui, dignissim nec sodales ut, feugiat et purus.'
22
- } , {
23
- 'name' : 'Ben Lesh' ,
24
- 'role' : 'Developer' ,
25
- 'githubUrl' : 'https://github.com/benlesh' ,
26
- 'avatar' : 'https://github.com/benlesh.png' ,
27
- 'twitterUrl' : 'https://twitter.com/BenLesh' ,
28
- 'linkedinUrl' : 'https://www.linkedin.com/in/blesh/' ,
29
- 'bio' :
30
- 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. ' +
31
- 'Sed est odio, sodales et tellus a, semper pellentesque elit. ' +
32
- 'Mauris purus dui, dignissim nec sodales ut, feugiat et purus.'
33
- } , {
34
- 'name' : 'Ben Lesh' ,
35
- 'role' : 'Developer' ,
36
- 'githubUrl' : 'https://github.com/benlesh' ,
37
- 'avatar' : 'https://github.com/benlesh.png' ,
38
- 'twitterUrl' : 'https://twitter.com/BenLesh' ,
39
- 'linkedinUrl' : 'https://www.linkedin.com/in/blesh/' ,
40
- 'bio' :
41
- 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. ' +
42
- 'Sed est odio, sodales et tellus a, semper pellentesque elit. ' +
43
- 'Mauris purus dui, dignissim nec sodales ut, feugiat et purus.'
44
- } , {
45
- 'name' : 'Ben Lesh' ,
46
- 'role' : 'Developer' ,
47
- 'githubUrl' : 'https://github.com/benlesh' ,
48
- 'avatar' : 'https://github.com/benlesh.png' ,
49
- 'twitterUrl' : 'https://twitter.com/BenLesh' ,
50
- 'linkedinUrl' : 'https://www.linkedin.com/in/blesh/' ,
51
- 'bio' :
52
- 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. ' +
53
- 'Sed est odio, sodales et tellus a, semper pellentesque elit. ' +
54
- 'Mauris purus dui, dignissim nec sodales ut, feugiat et purus.'
55
- } ] ,
56
- learningTeam : [ {
57
- 'name' : 'Ben Lesh' ,
58
- 'role' : 'Developer' ,
59
- 'githubUrl' : 'https://github.com/benlesh' ,
60
- 'avatar' : 'https://github.com/benlesh.png' ,
61
- 'twitterUrl' : 'https://twitter.com/BenLesh' ,
62
- 'linkedinUrl' : 'https://www.linkedin.com/in/blesh/' ,
63
- 'bio' :
64
- 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. ' +
65
- 'Sed est odio, sodales et tellus a, semper pellentesque elit. ' +
66
- 'Mauris purus dui, dignissim nec sodales ut, feugiat et purus.'
67
- } , {
68
- 'name' : 'Ben Lesh' ,
69
- 'role' : 'Developer' ,
70
- 'githubUrl' : 'https://github.com/benlesh' ,
71
- 'avatar' : 'https://github.com/benlesh.png' ,
72
- 'twitterUrl' : 'https://twitter.com/BenLesh' ,
73
- 'linkedinUrl' : 'https://www.linkedin.com/in/blesh/' ,
74
- 'bio' :
75
- 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. ' +
76
- 'Sed est odio, sodales et tellus a, semper pellentesque elit. ' +
77
- 'Mauris purus dui, dignissim nec sodales ut, feugiat et purus.'
78
- } , {
79
- 'name' : 'Ben Lesh' ,
80
- 'role' : 'Developer' ,
81
- 'githubUrl' : 'https://github.com/benlesh' ,
82
- 'avatar' : 'https://github.com/benlesh.png' ,
83
- 'twitterUrl' : 'https://twitter.com/BenLesh' ,
84
- 'linkedinUrl' : 'https://www.linkedin.com/in/blesh/' ,
85
- 'bio' :
86
- 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. ' +
87
- 'Sed est odio, sodales et tellus a, semper pellentesque elit. ' +
88
- 'Mauris purus dui, dignissim nec sodales ut, feugiat et purus.'
89
- } , {
90
- 'name' : 'Ben Lesh' ,
91
- 'role' : 'Developer' ,
92
- 'githubUrl' : 'https://github.com/benlesh' ,
93
- 'avatar' : 'https://github.com/benlesh.png' ,
94
- 'twitterUrl' : 'https://twitter.com/BenLesh' ,
95
- 'linkedinUrl' : 'https://www.linkedin.com/in/blesh/' ,
96
- 'bio' :
97
- 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. ' +
98
- 'Sed est odio, sodales et tellus a, semper pellentesque elit. ' +
99
- 'Mauris purus dui, dignissim nec sodales ut, feugiat et purus.'
100
- } ]
101
- } ] ) ;
10
+ return Observable . from ( [
11
+ {
12
+ coreTeam : [
13
+ {
14
+ name : 'Ben Lesh' ,
15
+ role : 'Developer' ,
16
+ githubUrl : 'https://github.com/benlesh' ,
17
+ avatar : 'https://avatars2.githubusercontent.com/u/1540597' ,
18
+ twitterUrl : 'https://twitter.com/BenLesh' ,
19
+ webpageUrl : 'http://www.benlesh.com'
20
+ } ,
21
+ {
22
+ name : 'Paul Taylor' ,
23
+ role : 'Developer' ,
24
+ githubUrl : 'https://github.com/trxcllnt' ,
25
+ avatar : 'https://avatars2.githubusercontent.com/u/178183' ,
26
+ twitterUrl : 'https://twitter.com/trxcllnt' ,
27
+ webpageUrl : 'http://graphistry.com'
28
+ } ,
29
+ {
30
+ name : 'Matthew Podwysocki' ,
31
+ role : 'Developer' ,
32
+ githubUrl : 'https://github.com/mattpodwysocki' ,
33
+ avatar : 'https://avatars0.githubusercontent.com/u/49051' ,
34
+ twitterUrl : 'https://twitter.com/mattpodwysocki' ,
35
+ webpageUrl : ''
36
+ } ,
37
+ {
38
+ name : 'OJ Kwon' ,
39
+ role : 'Developer' ,
40
+ githubUrl : 'https://github.com/kwonoj' ,
41
+ avatar : 'https://avatars1.githubusercontent.com/u/1210596' ,
42
+ twitterUrl : 'https://twitter.com/_ojkwon' ,
43
+ webpageUrl : ''
44
+ } ,
45
+ {
46
+ name : 'André Staltz' ,
47
+ role : 'Developer' ,
48
+ githubUrl : 'https://github.com/staltz' ,
49
+ avatar : 'https://avatars0.githubusercontent.com/u/90512' ,
50
+ twitterUrl : 'https://twitter.com/andrestaltz' ,
51
+ webpageUrl : 'http://staltz.com'
52
+ } ,
53
+ {
54
+ name : 'David Driscoll' ,
55
+ role : 'Developer' ,
56
+ githubUrl : 'https://github.com/david-driscoll' ,
57
+ avatar : 'https://avatars0.githubusercontent.com/u/1269157' ,
58
+ twitterUrl : 'https://twitter.com/david_dotnet' ,
59
+ webpageUrl : 'http://david-driscoll.github.io'
60
+ } ,
61
+ {
62
+ name : 'Tracy Lee' ,
63
+ role : 'Developer' ,
64
+ githubUrl : 'https://github.com/ladyleet' ,
65
+ avatar : 'https://avatars0.githubusercontent.com/u/8270563' ,
66
+ twitterUrl : 'https://twitter.com/ladyleet' ,
67
+ webpageUrl : 'http://thisdot.co'
68
+ }
69
+ ] ,
70
+ learningTeam : [
71
+ {
72
+ name : 'Tracy Lee' ,
73
+ role : 'Developer' ,
74
+ githubUrl : 'https://github.com/ladyleet' ,
75
+ avatar : 'https://avatars0.githubusercontent.com/u/8270563' ,
76
+ twitterUrl : 'https://twitter.com/ladyleet' ,
77
+ webpageUrl : 'http://thisdot.co'
78
+ } ,
79
+ {
80
+ name : 'Ashwin Sureshkumar' ,
81
+ role : 'Developer' ,
82
+ githubUrl : 'https://github.com/ashwin-sureshkumar' ,
83
+ avatar : 'https://avatars0.githubusercontent.com/u/4744080' ,
84
+ twitterUrl : 'https://twitter.com/Sureshkumar_Ash' ,
85
+ webpageUrl : 'https://t.co/XduklnxpK3'
86
+ } ,
87
+ {
88
+ name : 'Brian Troncone' ,
89
+ role : 'Developer' ,
90
+ githubUrl : 'https://github.com/btroncone' ,
91
+ avatar : 'https://avatars3.githubusercontent.com/u/5085101' ,
92
+ twitterUrl : 'http://twitter.com/btroncone' ,
93
+ webpageUrl : ''
94
+ } ,
95
+ {
96
+ name : 'Sumit Arora' ,
97
+ role : 'Developer' ,
98
+ githubUrl : 'https://github.com/sumitarora' ,
99
+ avatar : 'https://avatars3.githubusercontent.com/u/198247' ,
100
+ twitterUrl : 'https://twitter.com/arorasumit' ,
101
+ webpageUrl : 'http://www.arorasumit.com/'
102
+ } ,
103
+ {
104
+ name : 'Jen Luker' ,
105
+ role : 'Developer, A11y' ,
106
+ githubUrl : 'https://github.com/knittingcodemonkey' ,
107
+ avatar : 'https://avatars0.githubusercontent.com/u/1584489' ,
108
+ twitterUrl : 'https://twitter.com/knitcodemonkey' ,
109
+ webpageUrl : 'http://jenluker.com'
110
+ }
111
+ ]
112
+ }
113
+ ] ) ;
102
114
}
103
115
}
0 commit comments