1
0
mirror of https://github.com/flarum/core.git synced 2025-08-04 07:27:39 +02:00

Add settings to AdminDate type

This commit is contained in:
Alexander Skvortsov
2020-04-29 18:20:45 -04:00
committed by David Sevilla Martín
parent 7756c78805
commit 5a8eb2f978

View File

@@ -6,8 +6,11 @@ import Navigation from '../common/components/Navigation';
import AdminNav from './components/AdminNav';
export type AdminData = ApplicationData & {
phpVersion: string;
mysqlVersion: string;
phpVersion: string;
settings: {
[key: string]: string;
};
};
export default class Admin extends Application {