Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added media to cms-kit #7685

Merged
merged 26 commits into from
Feb 15, 2021
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
cf627f8
Added mediadescriptor and related domain settings
cotur Feb 8, 2021
8bfdc1e
Constants added and renaming folder
cotur Feb 8, 2021
75e13d5
added media descriptor repositores and orm settings
cotur Feb 8, 2021
8db77d3
update media descriptor size parameter type
cotur Feb 8, 2021
1221145
Added admin app service
cotur Feb 8, 2021
019dbce
Merge branch 'cms-kit/blog-initial' into cotur/cms-kit/media
cotur Feb 9, 2021
82d554d
refactoring
cotur Feb 10, 2021
9830bb3
Merge branch 'cms-kit/blog-initial' into cotur/cms-kit/media
cotur Feb 10, 2021
859fda1
Added media descriptor admin permissions
cotur Feb 10, 2021
8306dd7
Added common media app service
cotur Feb 10, 2021
d026abc
added missin authorization attribute
cotur Feb 10, 2021
f5b181e
remove unused namespace
cotur Feb 10, 2021
876b2b5
Update mediadescriptor constructor
cotur Feb 10, 2021
7bf8a90
added admin tests
cotur Feb 10, 2021
8125732
delete not necessary files and added host migration
cotur Feb 10, 2021
ffebd1d
Merge branch 'dev' into cotur/cms-kit/media
cotur Feb 10, 2021
f5737f8
rename media container name
cotur Feb 10, 2021
be20146
added missing localizations
cotur Feb 10, 2021
53a920a
update set accesibilty
cotur Feb 11, 2021
b20d42a
switch order of saving blob & entity
cotur Feb 11, 2021
9725c17
remove os depended filename validation
cotur Feb 11, 2021
5781dca
remove notnecessary chars
cotur Feb 11, 2021
324e90b
added tui-editor npm package and cast yarn gulp
cotur Feb 11, 2021
66b30b3
added missing tui package
cotur Feb 11, 2021
b47fcdf
added uppy npm packages
cotur Feb 11, 2021
0d0d1f0
Added tui-editor with media upload to index page
cotur Feb 11, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
using Volo.Abp.PermissionManagement.EntityFrameworkCore;
using Volo.Abp.PermissionManagement.Identity;
using Volo.Abp.SettingManagement.EntityFrameworkCore;
using Volo.Abp.Swashbuckle;
using Volo.Abp.TenantManagement;
using Volo.Abp.TenantManagement.EntityFrameworkCore;
using Volo.Abp.TenantManagement.Web;
Expand Down Expand Up @@ -65,7 +66,8 @@ namespace Volo.CmsKit
typeof(AbpTenantManagementEntityFrameworkCoreModule),
typeof(AbpAspNetCoreMvcUiBasicThemeModule),
typeof(AbpAspNetCoreSerilogModule),
typeof(BlobStoringDatabaseEntityFrameworkCoreModule)
typeof(BlobStoringDatabaseEntityFrameworkCoreModule),
typeof(AbpSwashbuckleModule)
)]
public class CmsKitWebUnifiedModule : AbpModule
{
Expand Down Expand Up @@ -158,7 +160,7 @@ public override void OnApplicationInitialization(ApplicationInitializationContex
app.UseAuthorization();

app.UseSwagger();
app.UseSwaggerUI(options =>
app.UseAbpSwaggerUI(options =>
{
options.SwaggerEndpoint("/swagger/v1/swagger.json", "Support APP API");
});
Expand Down