Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
VCCI-News
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Văn Hoàng
VCCI-News
Commits
be52fc3e
Commit
be52fc3e
authored
Sep 08, 2026
by
Phạm Quang Bảo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: external link
parent
c4686167
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
4 deletions
+24
-4
index.ts
src/api/vcci-news/models/index.ts
+2
-0
post.ts
src/api/vcci-news/models/post.ts
+2
-2
postEventDates.ts
src/api/vcci-news/models/postEventDates.ts
+9
-0
postMutate.ts
src/api/vcci-news/models/postMutate.ts
+2
-2
postMutateEventDates.ts
src/api/vcci-news/models/postMutateEventDates.ts
+9
-0
No files found.
src/api/vcci-news/models/index.ts
View file @
be52fc3e
...
...
@@ -313,6 +313,7 @@ export * from './postCategory';
export
*
from
'./postCategoryBulkCreate'
;
export
*
from
'./postCategoryMutate'
;
export
*
from
'./postContentStructure'
;
export
*
from
'./postEventDates'
;
export
*
from
'./postHistory'
;
export
*
from
'./postHistoryChanges'
;
export
*
from
'./postHistoryMutate'
;
...
...
@@ -321,6 +322,7 @@ export * from './postHistoryMutateSnapshot';
export
*
from
'./postHistorySnapshot'
;
export
*
from
'./postMutate'
;
export
*
from
'./postMutateContentStructure'
;
export
*
from
'./postMutateEventDates'
;
export
*
from
'./postTag'
;
export
*
from
'./postTagBulkCreate'
;
export
*
from
'./postTagMutate'
;
...
...
src/api/vcci-news/models/post.ts
View file @
be52fc3e
...
...
@@ -6,12 +6,12 @@
* OpenAPI spec version: 1.0.0
*/
import
type
{
PostContentStructure
}
from
'./postContentStructure'
;
import
type
{
PostEventDates
}
from
'./postEventDates'
;
export
interface
Post
{
id
?:
string
;
title
?:
string
;
thumbnail_id
?:
string
;
external_link
?:
string
;
content
?:
string
;
release_at
?:
string
;
is_active
?:
boolean
;
...
...
@@ -35,5 +35,5 @@ export interface Post {
location
?:
string
;
participation_fee
?:
string
;
content_structure
?:
PostContentStructure
;
event_dates
?:
string
;
event_dates
?:
PostEventDates
;
}
src/api/vcci-news/models/postEventDates.ts
0 → 100644
View file @
be52fc3e
/**
* Generated by orval v7.17.0 🍺
* Do not edit manually.
* VietProDev CMS Backend API
* Generated API documentation
* OpenAPI spec version: 1.0.0
*/
export
type
PostEventDates
=
{
[
key
:
string
]:
unknown
};
src/api/vcci-news/models/postMutate.ts
View file @
be52fc3e
...
...
@@ -6,11 +6,11 @@
* OpenAPI spec version: 1.0.0
*/
import
type
{
PostMutateContentStructure
}
from
'./postMutateContentStructure'
;
import
type
{
PostMutateEventDates
}
from
'./postMutateEventDates'
;
export
interface
PostMutate
{
title
?:
string
;
thumbnail_id
?:
string
;
external_link
?:
string
;
content
?:
string
;
release_at
?:
string
;
is_active
?:
boolean
;
...
...
@@ -30,5 +30,5 @@ export interface PostMutate {
location
?:
string
;
participation_fee
?:
string
;
content_structure
?:
PostMutateContentStructure
;
event_dates
?:
string
;
event_dates
?:
PostMutateEventDates
;
}
src/api/vcci-news/models/postMutateEventDates.ts
0 → 100644
View file @
be52fc3e
/**
* Generated by orval v7.17.0 🍺
* Do not edit manually.
* VietProDev CMS Backend API
* Generated API documentation
* OpenAPI spec version: 1.0.0
*/
export
type
PostMutateEventDates
=
{
[
key
:
string
]:
unknown
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment