diff --git a/resources/lang/en-US/admin/settings/general.php b/resources/lang/en-US/admin/settings/general.php index a0673ffa0a..1ea8d6498c 100644 --- a/resources/lang/en-US/admin/settings/general.php +++ b/resources/lang/en-US/admin/settings/general.php @@ -78,6 +78,8 @@ return [ 'footer_text_help' => 'This text will appear in the right-side footer. Links are allowed using Github flavored markdown. Line breaks, headers, images, etc may result in unpredictable results.', 'footer_text_placeholder' => 'Optional footer text', 'general_settings' => 'General Settings', + 'api_url' => 'API Base URL', + 'scim_url' => 'SCIM Base URL', 'general_settings_help' => 'Default EULA and more', 'generate_backup' => 'Generate Backup', 'google_workspaces' => 'Google Workspaces', diff --git a/resources/lang/en-US/general.php b/resources/lang/en-US/general.php index 37ac6eba5e..771e85a591 100644 --- a/resources/lang/en-US/general.php +++ b/resources/lang/en-US/general.php @@ -163,6 +163,7 @@ return [ 'image_filetypes_help' => 'Accepted Filetypes are jpg, webp, png, gif, svg, and avif. The maximum upload size allowed is :size.', 'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.', 'import' => 'Import', + 'documentation' => 'Open documentation in a new link', 'import_this_file' => 'Map fields and process this file', 'importing' => 'Importing', 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation .', diff --git a/resources/views/settings/index.blade.php b/resources/views/settings/index.blade.php index c73df97f7a..57e9e03fd4 100755 --- a/resources/views/settings/index.blade.php +++ b/resources/views/settings/index.blade.php @@ -343,86 +343,109 @@

{{ trans('admin/settings/general.system') }}

-
-
+
-
+
{{ trans('admin/settings/general.snipe_version') }}:
-
+
{{ config('version.app_version') }} build {{ config('version.build_version') }} ({{ config('version.hash_version') }})
-
+
{{ trans('admin/settings/general.license') }}:
-
- AGPL3 +
+ AGPL3 +
+
-
+
{{ trans('admin/settings/general.php') }}:
-
+
{{ phpversion() }}
-
+
{{ trans('admin/settings/general.laravel') }}:
-
+
{{ $snipeSettings->lar_ver() }}
-
+
{{ trans('admin/settings/general.timezone') }}:
-
+
{{ config('app.timezone') }}
-
+
{{ trans('admin/settings/general.database_driver') }}:
-
+
{{ config('database.default') }}
-
+
{{ trans('admin/settings/general.mail_from') }}:
-
+
{{ config('mail.from.name') }} <{{ config('mail.from.address') }}>
-
+
{{ trans('admin/settings/general.mail_reply_to') }}:
-
+
{{ config('mail.reply_to.name') }} <{{ config('mail.reply_to.address') }}>
+ +
+
+ {{ trans('admin/settings/general.api_url') }}: +
+
+ {{ url('/api/v1') }}{!! trans('account/general.api_base_url_endpoint') !!} + + +
+ +
+ {{ trans('admin/settings/general.scim_url') }}: +
+
+ {{ config('app.url') }}/scim/v2/ + + +
+
+ +
-
+
{{ trans('admin/settings/general.bs_table_storage') }}:
-
+
{{ config('session.bs_table_storage') }}
@@ -434,7 +457,7 @@
-
+