-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update example applications (#361)
- Loading branch information
1 parent
9bcecc5
commit 7bd0f4d
Showing
20 changed files
with
140 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import ActionsController from 'app/controllers/actions'; | ||
|
||
class AdminActionsController extends ActionsController { | ||
|
||
} | ||
|
||
export default AdminActionsController; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import ApplicationController from 'app/controllers/application'; | ||
|
||
class AdminApplicationController extends ApplicationController { | ||
|
||
} | ||
|
||
export default AdminApplicationController; |
7 changes: 7 additions & 0 deletions
7
examples/social-network/app/controllers/admin/categorizations.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import CategorizationsController from 'app/controllers/categorizations'; | ||
|
||
class AdminCategorizationsController extends CategorizationsController { | ||
|
||
} | ||
|
||
export default AdminCategorizationsController; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import CommentsController from 'app/controllers/comments'; | ||
|
||
class AdminCommentsController extends CommentsController { | ||
|
||
} | ||
|
||
export default AdminCommentsController; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import FriendshipsController from 'app/controllers/friendships'; | ||
|
||
class AdminFriendshipsController extends FriendshipsController { | ||
|
||
} | ||
|
||
export default AdminFriendshipsController; |
7 changes: 7 additions & 0 deletions
7
examples/social-network/app/controllers/admin/notifications.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import NotificationsController from 'app/controllers/notifications'; | ||
|
||
class AdminNotificationsController extends NotificationsController { | ||
|
||
} | ||
|
||
export default AdminNotificationsController; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import PostsController from 'app/controllers/posts'; | ||
|
||
class AdminPostsController extends PostsController { | ||
|
||
} | ||
|
||
export default AdminPostsController; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import ReactionsController from 'app/controllers/reactions'; | ||
|
||
class AdminReactionsController extends ReactionsController { | ||
|
||
} | ||
|
||
export default AdminReactionsController; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import TagsController from 'app/controllers/tags'; | ||
|
||
class AdminTagsController extends TagsController { | ||
|
||
} | ||
|
||
export default AdminTagsController; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import UsersController from 'app/controllers/users'; | ||
|
||
class AdminUsersController extends UsersController { | ||
|
||
} | ||
|
||
export default AdminUsersController; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import ActionsSerializer from 'app/serializers/actions'; | ||
|
||
class AdminActionsSerializer extends ActionsSerializer { | ||
|
||
} | ||
|
||
export default AdminActionsSerializer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import ApplicationSerializer from 'app/serializers/application'; | ||
|
||
class AdminApplicationSerializer extends ApplicationSerializer { | ||
|
||
} | ||
|
||
export default AdminApplicationSerializer; |
7 changes: 7 additions & 0 deletions
7
examples/social-network/app/serializers/admin/categorizations.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import CategorizationsSerializer from 'app/serializers/categorizations'; | ||
|
||
class AdminCategorizationsSerializer extends CategorizationsSerializer { | ||
|
||
} | ||
|
||
export default AdminCategorizationsSerializer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import CommentsSerializer from 'app/serializers/comments'; | ||
|
||
class AdminCommentsSerializer extends CommentsSerializer { | ||
|
||
} | ||
|
||
export default AdminCommentsSerializer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import FriendshipsSerializer from 'app/serializers/friendships'; | ||
|
||
class AdminFriendshipsSerializer extends FriendshipsSerializer { | ||
|
||
} | ||
|
||
export default AdminFriendshipsSerializer; |
7 changes: 7 additions & 0 deletions
7
examples/social-network/app/serializers/admin/notifications.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import NotificationsSerializer from 'app/serializers/notifications'; | ||
|
||
class AdminNotificationsSerializer extends NotificationsSerializer { | ||
|
||
} | ||
|
||
export default AdminNotificationsSerializer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import PostsSerializer from 'app/serializers/posts'; | ||
|
||
class AdminPostsSerializer extends PostsSerializer { | ||
|
||
} | ||
|
||
export default AdminPostsSerializer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import ReactionsSerializer from 'app/serializers/reactions'; | ||
|
||
class AdminReactionsSerializer extends ReactionsSerializer { | ||
|
||
} | ||
|
||
export default AdminReactionsSerializer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import TagsSerializer from 'app/serializers/tags'; | ||
|
||
class AdminTagsSerializer extends TagsSerializer { | ||
|
||
} | ||
|
||
export default AdminTagsSerializer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import UsersSerializer from 'app/serializers/users'; | ||
|
||
class AdminUsersSerializer extends UsersSerializer { | ||
|
||
} | ||
|
||
export default AdminUsersSerializer; |