@@ -94,6 +94,36 @@ return [
|
||||
*/
|
||||
'hide_ips' => env('HIDE_IPS'),
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Legal documents & source code
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Every website needs a collection of legal documents in order to remain compliant with
|
||||
| international & local privacy laws. These are often best known as:
|
||||
|
|
||||
| - Privacy Policy, where you outline your data protection practices;
|
||||
| - Terms of Service, where you outline acceptable usage of your services;
|
||||
| - Community Guidelines, where you outline acceptable behavior for users on your platforms.
|
||||
|
|
||||
| RBRecruiter will display these URLs at appropriate locations and force users to accept them,
|
||||
| if legally necessary, such as in the registration & application form pages.
|
||||
|
|
||||
| Additionally, you can also specify a support email and URL where your users/customers can send inquiries if necessary.
|
||||
|
|
||||
| You can leave these URLs empty if your website hasn't entered production yet, but we recommend
|
||||
| you draft these documents as soon as possible.
|
||||
|
|
||||
*/
|
||||
|
||||
'terms_url' => env('TERMS_URL', '#'),
|
||||
'privacy_url' => env('PRIVACY_URL', '#'),
|
||||
'guidelines_url' => env('GUIDELINES_URL', '#'),
|
||||
'support_url' => env('SUPPORT_URL', 'https://support.example.com'),
|
||||
'support_email' => env('SUPPORT_EMAIL', 'support@example.com'),
|
||||
'source_repo' => env('SOURCE_REPO', 'https://code.webvokestudio.pt/miguel456/rbrecruiter'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Environment
|
||||
@@ -261,6 +291,7 @@ return [
|
||||
\App\Providers\OptionsProvider::class,
|
||||
App\Providers\DigitalStorageProvider::class,
|
||||
App\Providers\JSONProvider::class,
|
||||
App\Providers\DiscordOuthProvider::class,
|
||||
NotificationChannels\Discord\DiscordServiceProvider::class,
|
||||
|
||||
],
|
||||
@@ -319,7 +350,8 @@ return [
|
||||
'Markdown' => GrahamCampbell\Markdown\Facades\Markdown::class,
|
||||
'ContextAwareValidator' => App\Facades\ContextAwareValidation::class,
|
||||
'Settings' => App\Facades\Options::class,
|
||||
'JSON' => App\Facades\JSON::class
|
||||
'JSON' => App\Facades\JSON::class,
|
||||
'DiscordOauth' => App\Facades\Discord::class
|
||||
|
||||
],
|
||||
|
||||
|
Reference in New Issue
Block a user