-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ed1868
commit 75958d0
Showing
17 changed files
with
353 additions
and
218 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
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
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
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
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
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 |
---|---|---|
@@ -1,17 +1,18 @@ | ||
import { User } from "./user.model"; | ||
|
||
export interface Article { | ||
id? : number; | ||
heading? : string; | ||
slug? : string; | ||
content? : string; | ||
description?: string; | ||
backdrop? : string; | ||
status? : string; | ||
created_at? : string; | ||
bookmark? : boolean; | ||
id? : number; | ||
heading? : string; | ||
slug? : string; | ||
content? : string; | ||
description? : string; | ||
backdrop? : string; | ||
status? : string; | ||
created_at? : string; | ||
bookmark? : boolean; | ||
// category? : string; | ||
// author?: string; | ||
// avatar?: string; | ||
user? : User; | ||
user? : User; | ||
category_id? : number; | ||
} |
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
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
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
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 |
---|---|---|
@@ -1,13 +1,16 @@ | ||
import { ArticleService } from './article.service'; | ||
import { CategoryService } from './category.service'; | ||
import { AuthenticationService } from './authentication.service'; | ||
import { ArticleService } from './article.service'; | ||
import { CategoryService } from './category.service'; | ||
import { AuthenticationService } from './authentication.service'; | ||
import { SeoService } from './seo.service'; | ||
|
||
export const services: any[] = [ | ||
ArticleService, | ||
AuthenticationService, | ||
CategoryService | ||
CategoryService, | ||
SeoService | ||
] | ||
|
||
export * from './article.service'; | ||
export * from './category.service'; | ||
export * from './authentication.service'; | ||
export * from './authentication.service'; | ||
export * from './seo.service'; |
Oops, something went wrong.