Skip to content
Scott Behrens edited this page Oct 17, 2016 · 1 revision

Table of Contents

Overview

The Admin page has four sections: Statuses, Flags, Workflows, Users.

How To Make a User Admin

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

Statuses can be used to track assets. The Create Statuses To Track Your Results page contains more specifics on how to setup Statuses.

Flags

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.

Workflows

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.

Users

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.

Clone this wiki locally