mirror of https://github.com/Squidex/squidex.git
15 changed files with 103 additions and 163 deletions
@ -1,8 +0,0 @@ |
|||||
/* |
|
||||
* Squidex Headless CMS |
|
||||
* |
|
||||
* @license |
|
||||
* Copyright (c) Sebastian Stehle. All rights reserved |
|
||||
*/ |
|
||||
|
|
||||
export * from './pages/media-page.component'; |
|
||||
@ -1,9 +0,0 @@ |
|||||
/* |
|
||||
* Squidex Headless CMS |
|
||||
* |
|
||||
* @license |
|
||||
* Copyright (c) Sebastian Stehle. All rights reserved |
|
||||
*/ |
|
||||
|
|
||||
export * from './declarations'; |
|
||||
export * from './module'; |
|
||||
@ -1,34 +0,0 @@ |
|||||
/* |
|
||||
* Squidex Headless CMS |
|
||||
* |
|
||||
* @license |
|
||||
* Copyright (c) Sebastian Stehle. All rights reserved |
|
||||
*/ |
|
||||
|
|
||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule, Routes } from '@angular/router'; |
|
||||
|
|
||||
import { SqxFrameworkModule, SqxSharedModule } from 'shared'; |
|
||||
|
|
||||
import { |
|
||||
MediaPageComponent |
|
||||
} from './declarations'; |
|
||||
|
|
||||
const routes: Routes = [ |
|
||||
{ |
|
||||
path: '', |
|
||||
component: MediaPageComponent |
|
||||
} |
|
||||
]; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [ |
|
||||
SqxFrameworkModule, |
|
||||
SqxSharedModule, |
|
||||
RouterModule.forChild(routes) |
|
||||
], |
|
||||
declarations: [ |
|
||||
MediaPageComponent |
|
||||
] |
|
||||
}) |
|
||||
export class SqxFeatureMediaModule { } |
|
||||
@ -1,14 +0,0 @@ |
|||||
<sqx-title message="{app} | Media" parameter1="app" value1="{{appName() | async}}"></sqx-title> |
|
||||
|
|
||||
<div class="panel panel-light"> |
|
||||
<div class="panel-header"> |
|
||||
<h3 class="panel-title">Media</h3> |
|
||||
|
|
||||
<a class="panel-close" dashboardLink> |
|
||||
<i class="icon-close"></i> |
|
||||
</a> |
|
||||
</div> |
|
||||
|
|
||||
<div class="panel-content"> |
|
||||
</div> |
|
||||
</div> |
|
||||
@ -1,7 +0,0 @@ |
|||||
@import '_vars'; |
|
||||
@import '_mixins'; |
|
||||
|
|
||||
.panel { |
|
||||
min-width: 600px; |
|
||||
max-width: 600px; |
|
||||
} |
|
||||
@ -1,27 +0,0 @@ |
|||||
/* |
|
||||
* Squidex Headless CMS |
|
||||
* |
|
||||
* @license |
|
||||
* Copyright (c) Sebastian Stehle. All rights reserved |
|
||||
*/ |
|
||||
|
|
||||
import { Component } from '@angular/core'; |
|
||||
|
|
||||
import { |
|
||||
AppComponentBase, |
|
||||
AppsStoreService, |
|
||||
NotificationService, |
|
||||
UsersProviderService |
|
||||
} from 'shared'; |
|
||||
|
|
||||
@Component({ |
|
||||
selector: 'sqx-media-page', |
|
||||
styleUrls: ['./media-page.component.scss'], |
|
||||
templateUrl: './media-page.component.html' |
|
||||
}) |
|
||||
export class MediaPageComponent extends AppComponentBase { |
|
||||
constructor(apps: AppsStoreService, notifications: NotificationService, users: UsersProviderService) { |
|
||||
super(apps, notifications, users); |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
Loading…
Reference in new issue