mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 01:11:46 +08:00 
			
		
		
		
	update: get comm config api
This commit is contained in:
		| @@ -11,8 +11,26 @@ class CommController extends Controller | ||||
|     { | ||||
|         return response([ | ||||
|             'data' => [ | ||||
|                 'tos_url' => config('v2board.tos_url') | ||||
|                 'tos_url' => config('v2board.tos_url'), | ||||
|                 'is_email_verify' => (int)config('v2board.email_verify', 0) ? 1 : 0, | ||||
|                 'is_invite_force' => (int)config('v2board.invite_force', 0) ? 1 : 0, | ||||
|                 'email_whitelist_suffix' => (int)config('v2board.email_whitelist_enable', 0) | ||||
|                     ? $this->getEmailSuffix() | ||||
|                     : 0, | ||||
|                 'is_recaptcha' => (int)config('v2board.recaptcha_enable', 0) ? 1 : 0, | ||||
|                 'recaptcha_siteKey' => config('v2board.recaptcha_site_key'), | ||||
|                 'app_description' => config('v2board.app_description'), | ||||
|                 'app_url' => config('v2board.app_url') | ||||
|             ] | ||||
|         ]); | ||||
|     } | ||||
|  | ||||
|     private function getEmailSuffix() | ||||
|     { | ||||
|         $suffix = config('v2board.email_whitelist_suffix', Dict::EMAIL_WHITELIST_SUFFIX_DEFAULT); | ||||
|         if (!is_array($suffix)) { | ||||
|             return preg_split('/,/', $suffix); | ||||
|         } | ||||
|         return $suffix; | ||||
|     } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user