Follow the angular styleguide for the directories structure
authorChocobozzz <florian.bigard@gmail.com>
Fri, 27 May 2016 14:23:10 +0000 (16:23 +0200)
committerChocobozzz <florian.bigard@gmail.com>
Fri, 27 May 2016 14:23:10 +0000 (16:23 +0200)
commit41a2aee38cf812510010da09de9bae53590ec119
tree79d55d6ae0ef6f66ccb88890cf1ef1946dc65fb4
parent157cb9c9713e08ff70078660a32dd77ecb87eabc
Follow the angular styleguide for the directories structure
95 files changed:
client/.gitignore
client/angular/app/app.component.html [deleted file]
client/angular/app/app.component.scss [deleted file]
client/angular/app/app.component.ts [deleted file]
client/angular/app/search.component.html [deleted file]
client/angular/app/search.component.ts [deleted file]
client/angular/app/search.ts [deleted file]
client/angular/friends/services/friends.service.ts [deleted file]
client/angular/main.ts [deleted file]
client/angular/users/components/login/login.component.html [deleted file]
client/angular/users/components/login/login.component.scss [deleted file]
client/angular/users/components/login/login.component.ts [deleted file]
client/angular/users/models/authStatus.ts [deleted file]
client/angular/users/models/token.ts [deleted file]
client/angular/users/models/user.ts [deleted file]
client/angular/users/services/auth.service.ts [deleted file]
client/angular/videos/components/add/videos-add.component.html [deleted file]
client/angular/videos/components/add/videos-add.component.scss [deleted file]
client/angular/videos/components/add/videos-add.component.ts [deleted file]
client/angular/videos/components/list/sort.ts [deleted file]
client/angular/videos/components/list/video-miniature.component.html [deleted file]
client/angular/videos/components/list/video-miniature.component.scss [deleted file]
client/angular/videos/components/list/video-miniature.component.ts [deleted file]
client/angular/videos/components/list/video-sort.component.html [deleted file]
client/angular/videos/components/list/video-sort.component.ts [deleted file]
client/angular/videos/components/list/videos-list.component.html [deleted file]
client/angular/videos/components/list/videos-list.component.scss [deleted file]
client/angular/videos/components/list/videos-list.component.ts [deleted file]
client/angular/videos/components/watch/videos-watch.component.html [deleted file]
client/angular/videos/components/watch/videos-watch.component.scss [deleted file]
client/angular/videos/components/watch/videos-watch.component.ts [deleted file]
client/angular/videos/loader.component.html [deleted file]
client/angular/videos/loader.component.scss [deleted file]
client/angular/videos/loader.component.ts [deleted file]
client/angular/videos/pagination.ts [deleted file]
client/angular/videos/video.ts [deleted file]
client/angular/videos/videos.service.ts [deleted file]
client/app/app.component.html [new file with mode: 0644]
client/app/app.component.scss [new file with mode: 0644]
client/app/app.component.ts [new file with mode: 0644]
client/app/friends/friend.service.ts [new file with mode: 0644]
client/app/friends/index.ts [new file with mode: 0644]
client/app/shared/index.ts [new file with mode: 0644]
client/app/shared/search-field.type.ts [new file with mode: 0644]
client/app/shared/search.component.html [new file with mode: 0644]
client/app/shared/search.component.ts [new file with mode: 0644]
client/app/shared/search.model.ts [new file with mode: 0644]
client/app/users/index.ts [new file with mode: 0644]
client/app/users/login/index.ts [new file with mode: 0644]
client/app/users/login/login.component.html [new file with mode: 0644]
client/app/users/login/login.component.scss [new file with mode: 0644]
client/app/users/login/login.component.ts [new file with mode: 0644]
client/app/users/shared/auth-status.model.ts [new file with mode: 0644]
client/app/users/shared/auth.service.ts [new file with mode: 0644]
client/app/users/shared/index.ts [new file with mode: 0644]
client/app/users/shared/token.model.ts [new file with mode: 0644]
client/app/users/shared/user.model.ts [new file with mode: 0644]
client/app/videos/index.ts [new file with mode: 0644]
client/app/videos/shared/index.ts [new file with mode: 0644]
client/app/videos/shared/loader/index.ts [new file with mode: 0644]
client/app/videos/shared/loader/loader.component.html [new file with mode: 0644]
client/app/videos/shared/loader/loader.component.scss [new file with mode: 0644]
client/app/videos/shared/loader/loader.component.ts [new file with mode: 0644]
client/app/videos/shared/pagination.model.ts [new file with mode: 0644]
client/app/videos/shared/sort-field.type.ts [new file with mode: 0644]
client/app/videos/shared/video.model.ts [new file with mode: 0644]
client/app/videos/shared/video.service.ts [new file with mode: 0644]
client/app/videos/video-add/index.ts [new file with mode: 0644]
client/app/videos/video-add/video-add.component.html [new file with mode: 0644]
client/app/videos/video-add/video-add.component.scss [new file with mode: 0644]
client/app/videos/video-add/video-add.component.ts [new file with mode: 0644]
client/app/videos/video-list/index.ts [new file with mode: 0644]
client/app/videos/video-list/video-list.component.html [new file with mode: 0644]
client/app/videos/video-list/video-list.component.scss [new file with mode: 0644]
client/app/videos/video-list/video-list.component.ts [new file with mode: 0644]
client/app/videos/video-list/video-miniature.component.html [new file with mode: 0644]
client/app/videos/video-list/video-miniature.component.scss [new file with mode: 0644]
client/app/videos/video-list/video-miniature.component.ts [new file with mode: 0644]
client/app/videos/video-list/video-sort.component.html [new file with mode: 0644]
client/app/videos/video-list/video-sort.component.ts [new file with mode: 0644]
client/app/videos/video-watch/index.ts [new file with mode: 0644]
client/app/videos/video-watch/video-watch.component.html [new file with mode: 0644]
client/app/videos/video-watch/video-watch.component.scss [new file with mode: 0644]
client/app/videos/video-watch/video-watch.component.ts [new file with mode: 0644]
client/index.html
client/main.ts [new file with mode: 0644]
client/stylesheets/application.scss
client/systemjs.config.js
client/tsconfig.json
scripts/build/client/sass.sh
scripts/clean/client/sass.sh
scripts/clean/client/tsc.sh
scripts/watch/client/livereload.sh
scripts/watch/client/sass.sh
server.js