Commit 1cfc93bc by sujata

add rank in event category

1 parent 22e580d1
...@@ -23,6 +23,9 @@ ...@@ -23,6 +23,9 @@
"relation": "manyToMany", "relation": "manyToMany",
"target": "api::event.event", "target": "api::event.event",
"inversedBy": "event_categories" "inversedBy": "event_categories"
},
"rank": {
"type": "string"
} }
} }
} }
...@@ -1365,6 +1365,7 @@ export interface ApiEventCategoryEventCategory ...@@ -1365,6 +1365,7 @@ export interface ApiEventCategoryEventCategory
Schema.Attribute.Private; Schema.Attribute.Private;
Name: Schema.Attribute.String; Name: Schema.Attribute.String;
publishedAt: Schema.Attribute.DateTime; publishedAt: Schema.Attribute.DateTime;
rank: Schema.Attribute.String;
slug: Schema.Attribute.UID<'Name'>; slug: Schema.Attribute.UID<'Name'>;
updatedAt: Schema.Attribute.DateTime; updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!