-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add icon handle in metadata to handle manifest icons in AdminCP
- Loading branch information
1 parent
e531dca
commit 027d280
Showing
21 changed files
with
355 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 1 addition & 6 deletions
7
packages/backend/src/core/admin/settings/metadata/metadata.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,11 @@ | ||
import { Module } from '@nestjs/common'; | ||
|
||
import { HelpersShowMetadataAdminService } from './helpers.service'; | ||
import { MetadataAdminController } from './metadata.controller'; | ||
import { EditMetadataAdminService } from './services/edit.service'; | ||
import { ShowMetadataAdminService } from './services/show.service'; | ||
|
||
@Module({ | ||
providers: [ | ||
ShowMetadataAdminService, | ||
HelpersShowMetadataAdminService, | ||
EditMetadataAdminService, | ||
], | ||
providers: [ShowMetadataAdminService, EditMetadataAdminService], | ||
controllers: [MetadataAdminController], | ||
}) | ||
export class MetadataSettingsAdminModule {} |
100 changes: 93 additions & 7 deletions
100
packages/backend/src/core/admin/settings/metadata/services/edit.service.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.