mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 06:25:51 +03:00
8b8fa76cc7
- Adjustments to the icon spacing for all tables - Adjustments to the font weighting and colour for all event tables - Changed activity on dashboard to have relative time - Tweaked padding and margins to bring more consistency - Also fixed a linting bug refs https://github.com/TryGhost/Team/issues/1816
16 lines
380 B
JavaScript
16 lines
380 B
JavaScript
import PostsRoute from './posts';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default class PagesRoute extends PostsRoute {
|
|
@service feature;
|
|
|
|
modelName = 'page';
|
|
|
|
buildRouteInfoMetadata() {
|
|
return {
|
|
titleToken: 'Pages',
|
|
mainClasses: this.feature.get('memberAttribution') ? ['gh-main-fullwidth'] : null
|
|
};
|
|
}
|
|
}
|