Files
einundzwanzig-portal/config/gamify.php
Benjamin Takats 4cd6924e22 sort by pills
2023-01-14 22:19:48 +01:00

39 lines
1.0 KiB
PHP

<?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' => [
'No-Coiner' => 0,
'Orange Pilled' => 1,
'Cyber Hornet' => 21000, // 210.000
'Satoshi Nakamoto' => 21000000, // 21.000.000
],
// Default level
'badge_default_level' => 0
];