-
Notifications
You must be signed in to change notification settings - Fork 319
Admin
The Admin page has four sections: Statuses, Flags, Workflows, Users.
You can specify a user is admin by using the Rails console
cd /your_dir/Scumblr
rails c
> my_user = User.where(email: "[email protected]").first
> my_user.is_admin = true
> my_user.save
Statuses can be used to track assets. The Create Statuses To Track Your Results page contains more specifics on how to setup Statuses.
In Scumblr, results can be assigned one or more workflows. This is done by adding a workflow flag from the Result view page (as discussed in the Workflow Flags section above). Once a workflow flag has been added, the result can be moved through the various phases from the result view page.
More information on Workflows for Scumblr specifically can be found in the Extending Scumblr section of the wiki.
Scumblr uses the Workflowable gem (www.github.com/netflix/workflowable) to allow defining flexible workflows for actioning results. This section will give a brief overview of workflows. For more information about setting up and defining workflows, see the Workflowable wiki.
More information on Workflows for Scumblr specifically can be found in the Extending Scumblr section of the wiki.
You can create new users, by clicking the Admin
dropdown and selecting Users. There are two types of user roles: regular and admin. Admin users have the ability to create Flags, Statuses, Workflows, and Other Users.