summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2017-08-31 12:25:06 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2017-08-31 12:32:08 +0200
commit0a20883aa862779b48fd2a297456c2db04cffb95 (patch)
tree310600aaa23404f0cd7d3e198bacdbc93645da32 /config
parent2bd127c011846aad69731d1d63535a3d4f100af0 (diff)
Reimplementation of 2840bb619 (signup requires arrival), closes #330
Diffstat (limited to 'config')
-rw-r--r--config/config.default.php27
1 files changed, 15 insertions, 12 deletions
diff --git a/config/config.default.php b/config/config.default.php
index a0303b15..419b02d1 100644
--- a/config/config.default.php
+++ b/config/config.default.php
@@ -4,7 +4,7 @@
return [
// MySQL-Connection Settings
- 'database' => [
+ 'database' => [
'host' => 'localhost',
'user' => 'root',
'pw' => '',
@@ -12,28 +12,28 @@ return [
],
// For accessing stats
- 'api_key' => '',
+ 'api_key' => '',
// Enable maintenance mode (show a static page)
- 'maintenance' => false,
+ 'maintenance' => false,
// Set to development to enable debugging messages
- 'environment' => 'production',
+ 'environment' => 'production',
// URL to the angel faq and job description
- 'faq_url' => 'https://events.ccc.de/congress/2013/wiki/Static:Volunteers',
+ 'faq_url' => 'https://events.ccc.de/congress/2013/wiki/Static:Volunteers',
// Contact email address, linked on every page
- 'contact_email' => 'mailto:ticket@c3heaven.de',
+ 'contact_email' => 'mailto:ticket@c3heaven.de',
// From address of all emails
- 'no_reply_email' => 'noreply@engelsystem.de',
+ 'no_reply_email' => 'noreply@engelsystem.de',
// Default theme, 1=style1.css
- 'theme' => 1,
+ 'theme' => 1,
// Available themes
- 'available_themes' => [
+ 'available_themes' => [
'4' => 'Engelsystem 33c3 (2016)',
'3' => 'Engelsystem 32c3 (2015)',
'2' => 'Engelsystem cccamp15',
@@ -42,10 +42,13 @@ return [
],
// Number of News shown on one site
- 'display_news' => 6,
+ 'display_news' => 6,
+
+ // Only arrived angels can sign up for shifts
+ 'signup_requires_arrival' => false,
// Anzahl Stunden bis zum Austragen eigener Schichten
- 'last_unsubscribe' => 3,
+ 'last_unsubscribe' => 3,
// Setzt den zu verwendenden Crypto-Algorithmus (entsprechend der Dokumentation von crypt()).
// Falls ein Benutzerpasswort in einem anderen Format gespeichert ist,
@@ -55,7 +58,7 @@ return [
// Blowfish '$2y$13'
// SHA-256 '$5$rounds=5000'
// SHA-512 '$6$rounds=5000'
- 'crypt_alg' => '$6$rounds=5000',
+ 'crypt_alg' => '$6$rounds=5000',
'min_password_length' => 8,