浏览代码

Update site config

Daniel Supernault 2 年之前
父节点
当前提交
6d59dc8e1e
共有 1 个文件被更改,包括 9 次插入0 次删除
  1. 9 0
      app/Util/Site/Config.php

+ 9 - 0
app/Util/Site/Config.php

@@ -12,6 +12,7 @@ class Config {
 	public static function get() {
 		return Cache::remember(self::CACHE_KEY, 900, function() {
 			return [
+				'version' => config('pixelfed.version'),
 				'open_registration' => (bool) config_cache('pixelfed.open_registration'),
 				'uploader' => [
 					'max_photo_size' => (int) config('pixelfed.max_photo_size'),
@@ -44,6 +45,14 @@ class Config {
 					'description' => config_cache('app.short_description')
 				],
 
+				'account' => [
+					'max_avatar_size' => config('pixelfed.max_avatar_size'),
+					'max_bio_length' => config('pixelfed.max_bio_length'),
+					'max_name_length' => config('pixelfed.max_name_length'),
+					'min_password_length' => config('pixelfed.min_password_length'),
+					'max_account_size' => config('pixelfed.max_account_size')
+				],
+
 				'username' => [
 					'remote' => [
 						'formats' => config('instance.username.remote.formats'),