Skip to content
Snippets Groups Projects

fix gitignore

Merged Guilherme Eduardo requested to merge strapi into develop
2 files
+ 34
4
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -848,6 +848,39 @@ export interface ApiPostPost extends Schema.CollectionType {
@@ -848,6 +848,39 @@ export interface ApiPostPost extends Schema.CollectionType {
};
};
}
}
 
export interface ApiProjetoProjeto extends Schema.CollectionType {
 
collectionName: 'projetos';
 
info: {
 
singularName: 'projeto';
 
pluralName: 'projetos';
 
displayName: ' Projeto';
 
};
 
options: {
 
draftAndPublish: true;
 
};
 
attributes: {
 
Titulo: Attribute.String;
 
Status: Attribute.String;
 
Parceiro: Attribute.String;
 
Descricao: Attribute.RichText;
 
createdAt: Attribute.DateTime;
 
updatedAt: Attribute.DateTime;
 
publishedAt: Attribute.DateTime;
 
createdBy: Attribute.Relation<
 
'api::projeto.projeto',
 
'oneToOne',
 
'admin::user'
 
> &
 
Attribute.Private;
 
updatedBy: Attribute.Relation<
 
'api::projeto.projeto',
 
'oneToOne',
 
'admin::user'
 
> &
 
Attribute.Private;
 
};
 
}
 
declare module '@strapi/types' {
declare module '@strapi/types' {
export module Shared {
export module Shared {
export interface ContentTypes {
export interface ContentTypes {
@@ -868,6 +901,7 @@ declare module '@strapi/types' {
@@ -868,6 +901,7 @@ declare module '@strapi/types' {
'plugin::users-permissions.user': PluginUsersPermissionsUser;
'plugin::users-permissions.user': PluginUsersPermissionsUser;
'api::o-c3sl.o-c3sl': ApiOC3SlOC3Sl;
'api::o-c3sl.o-c3sl': ApiOC3SlOC3Sl;
'api::post.post': ApiPostPost;
'api::post.post': ApiPostPost;
 
'api::projeto.projeto': ApiProjetoProjeto;
}
}
}
}
}
}
Loading