mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
add landing pages for meetups
This commit is contained in:
37
config/gamify.php
Normal file
37
config/gamify.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
// Model which will be having points, generally it will be User
|
||||
'payee_model' => '\App\User',
|
||||
|
||||
// Reputation model
|
||||
'reputation_model' => '\QCod\Gamify\Reputation',
|
||||
|
||||
// Allow duplicate reputation points
|
||||
'allow_reputation_duplicate' => true,
|
||||
|
||||
// Broadcast on private channel
|
||||
'broadcast_on_private_channel' => true,
|
||||
|
||||
// Channel name prefix, user id will be suffixed
|
||||
'channel_name' => 'user.reputation.',
|
||||
|
||||
// Badge model
|
||||
'badge_model' => '\QCod\Gamify\Badge',
|
||||
|
||||
// Where all badges icon stored
|
||||
'badge_icon_folder' => 'images/badges/',
|
||||
|
||||
// Extention of badge icons
|
||||
'badge_icon_extension' => '.svg',
|
||||
|
||||
// All the levels for badge
|
||||
'badge_levels' => [
|
||||
'beginner' => 1,
|
||||
'intermediate' => 2,
|
||||
'advanced' => 3,
|
||||
],
|
||||
|
||||
// Default level
|
||||
'badge_default_level' => 1
|
||||
];
|
||||
Reference in New Issue
Block a user