Introduction
Display the list of user-requested features, approved, in progress, resolved and rejected ones. Users can also upvote and/or downvote features and add comments to features.Enable/disable module
Each module can be enabled or disabled in your application, without affecting other parts of your code.Via terminal
Manually
modules_statuses.json
Set Roadmap to true (enabled) or false (disabled).
Override files
To override tables for database, you can either update original migration file inmodules/Roadmap/database/migrations folder or publish migrations to your application’s migrations folder.
resources/js/Modules/Roadmap folder where you can update them as you wish.
It’s recommended to publish files if you need to update anything.
Configuration
Go to dedicatedconfig file and update the settings to fit your application.
Author can vote
Default istrue
Set author_can_vote to true to allow authors to upvote their own features.
Set author_can_vote to false to prevent authors to upvote their own features.
Downvotes
Default istrue
Set downvotes_enabled to true to enable downvotes.
Set downvotes_enabled to false to disable downvotes.
Authenticated
Default istrue
Set must_be_authenticated to true to allow creation of new features only for authenticated users.
Set must_be_authenticated to false to allow guests (non-authenticated users) to create new features.
Subscribed
Default isfalse
Set must_be_subscribed to true to allow creation of new features and comments only for subscribed users.
When true the must_be_authenticated value will be ignored since subscribed users must be authenticated to get correct data.
