Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas Achenbach committed Jan 5, 2025
1 parent 4a03b66 commit 0f1b403
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 91 deletions.
32 changes: 0 additions & 32 deletions src/api/blog/content-types/blog/schema.json

This file was deleted.

9 changes: 0 additions & 9 deletions src/api/blog/controllers/blog.js

This file was deleted.

9 changes: 0 additions & 9 deletions src/api/blog/routes/blog.js

This file was deleted.

9 changes: 0 additions & 9 deletions src/api/blog/services/blog.js

This file was deleted.

32 changes: 0 additions & 32 deletions types/generated/contentTypes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -369,37 +369,6 @@ export interface AdminUser extends Struct.CollectionTypeSchema {
};
}

export interface ApiBlogBlog extends Struct.CollectionTypeSchema {
collectionName: 'blogs';
info: {
description: '';
displayName: 'Blog post';
pluralName: 'blogs';
singularName: 'blog';
};
options: {
draftAndPublish: true;
};
attributes: {
Body: Schema.Attribute.Blocks;
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
Image: Schema.Attribute.Media<
'images' | 'files' | 'videos' | 'audios',
true
>;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<'oneToMany', 'api::blog.blog'> &
Schema.Attribute.Private;
publishedAt: Schema.Attribute.DateTime;
Title: Schema.Attribute.String;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
};
}

export interface ApiComedianComedian extends Struct.CollectionTypeSchema {
collectionName: 'comedians';
info: {
Expand Down Expand Up @@ -986,7 +955,6 @@ declare module '@strapi/strapi' {
'admin::transfer-token': AdminTransferToken;
'admin::transfer-token-permission': AdminTransferTokenPermission;
'admin::user': AdminUser;
'api::blog.blog': ApiBlogBlog;
'api::comedian.comedian': ApiComedianComedian;
'api::event.event': ApiEventEvent;
'plugin::content-releases.release': PluginContentReleasesRelease;
Expand Down

0 comments on commit 0f1b403

Please sign in to comment.