rev.27 Update config for poll

This commit is contained in:
Visman 2020-11-18 20:18:44 +07:00
parent 69538737e3
commit a938c197e9
3 changed files with 12 additions and 3 deletions

View file

@ -44,7 +44,7 @@ if (
}
$c->PUBLIC_URL = $c->BASE_URL . $forkPublicPrefix;
$c->FORK_REVISION = 26;
$c->FORK_REVISION = 27;
$c->START = $forkStart;
$c->DIR_APP = __DIR__;
$c->DIR_PUBLIC = $forkPublic;

View file

@ -100,6 +100,7 @@ return [
'forums' => '@ForumManager:init',
'topics' => \ForkBB\Models\Topic\Manager::class,
'posts' => \ForkBB\Models\Post\Manager::class,
'polls' => \ForkBB\Models\Poll\Manager::class,
'reports' => \ForkBB\Models\Report\Manager::class,
'user' => '@users:current',
'userRules' => '@UsersRules:init',
@ -138,6 +139,11 @@ return [
'ProfileRules' => \ForkBB\Models\Rules\Profile::class,
'UsersRules' => \ForkBB\Models\Rules\Users::class,
'PollManagerLoad' => \ForkBB\Models\Poll\Load::class,
'PollManagerSave' => \ForkBB\Models\Poll\Save::class,
'PollManagerDelete' => \ForkBB\Models\Poll\Delete::class,
'PollManagerRevision' => \ForkBB\Models\Poll\Revision::class,
'SubscriptionModelSend' => \ForkBB\Models\Subscription\Send::class,
'BanListModelIsBanned' => \ForkBB\Models\BanList\IsBanned::class,
@ -294,6 +300,9 @@ return [
'PostManagerFeed' => \ForkBB\Models\Post\Feed::class,
'PostManagerUpdateUsername' => \ForkBB\Models\Post\UpdateUsername::class,
'PollModel' => \ForkBB\Models\Poll\Model::class,
'ReportModel' => \ForkBB\Models\Report\Model::class,
'ReportManagerSave' => \ForkBB\Models\Report\Save::class,
'ReportManagerLoad' => \ForkBB\Models\Report\Load::class,

View file

@ -1,4 +1,4 @@
# ForkBB rev.26 Pre-Alpha Readme
# ForkBB rev.27 Pre-Alpha Readme
## About
@ -6,7 +6,7 @@ ForkBB is a free and open source forum software. The project is based on [FluxBB
## Note
### Do not use in production.
### Please DO NOT use this revision in production, it is for test only.
Many functions of the forum are not implemented.
No: private messages, voting, plugins/extensions system.