mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
0f2faed20c
refs https://github.com/TryGhost/Toolbox/issues/175 - both cases now show the same message so I've reverted back to returning a boolean indicating whether it should be shown - also pulls out the check for Pro so the if-statements are easier to read
39 lines
1.0 KiB
JavaScript
39 lines
1.0 KiB
JavaScript
import Controller from '@ember/controller';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default class WhatsNewController extends Controller {
|
|
@service config;
|
|
@service upgradeStatus;
|
|
@service whatsNew;
|
|
|
|
queryParams = ['entry'];
|
|
|
|
get copyrightYear() {
|
|
const date = new Date();
|
|
return date.getFullYear();
|
|
}
|
|
|
|
get showDatabaseWarning() {
|
|
const isProduction = !!this.config.get('environment').match?.(/production/i);
|
|
const isPro = !!this.config.get('hostSettings')?.siteId;
|
|
const database = this.config.get('database');
|
|
|
|
// Don't show any warnings for Pro
|
|
if (isPro) {
|
|
return false;
|
|
}
|
|
|
|
// Show a warning if we're in production and not using MySQL 8
|
|
if (isProduction && database !== 'mysql8') {
|
|
return true;
|
|
}
|
|
|
|
// Show a warning if we're in development and using MySQL 5
|
|
if (!isProduction && database === 'mysql5') {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|