Skip to content
Snippets Groups Projects
Commit 24f5e8d5 authored by Guilherme Eduardo's avatar Guilherme Eduardo
Browse files

fix gitignore

parent d6d08085
No related branches found
No related tags found
1 merge request!5fix gitignore
...@@ -65,11 +65,7 @@ $RECYCLE.BIN/ ...@@ -65,11 +65,7 @@ $RECYCLE.BIN/
# Logs and databases # Logs and databases
############################ ############################
.tmp
*.log *.log
*.sql
*.sqlite
*.sqlite3
############################ ############################
......
...@@ -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;
} }
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment