Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

*(Under Review for V2)

Introduction

This new access method replaces the old admin_org controller and functions.

How Does it Work?

(*)

Creating an Organisation

Orgs (organisations) in Open-AudIT are a key item. A user has a primary Org as well as a list of Orgs they can access. A user combines this with a list of assigned 'Roles' that define what actions they can take on items assigned to the Orgs they have access to. The combination of a users 'orgs' and 'roles' define what they can and cannot do within Open-AudIT.

Most items in Open-AudIT are assigned to an Org. Devices, Locations, Networks, etc, etc.

Orgs can have child Orgs. Think of an organisational chart (tree) structure. If a user has access to a specific Org, they also have access to that Orgs descendants.

Creating an Organisation

Join Paul McClendon, an Opmantek Support Engineer, as he demonstrates how to create organizations to be used in Open-AudIT.

Widget Connector
width600
urlhttps://www.youtube.com/watch?v=ZjPb-BHHIYU
height400

To make another organisation go to menu: Manage -> Orgs -> Create Orgs.Image Removed


Image Added

 


Image RemovedImage Added

View Organisation Details

...

You will see a list of organisations. You can view an organisation by clicking on the blue view iconbutton. You can also edit or delete your organisations.

Image Removed

 

Database Schema
 

Code Block
themeEclipse
languagetext
Create Table: CREATE TABLE `orgs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `parent_id` int(10) unsigned DEFAULT '1',
  `description` text NOT NULL,
  `ad_group` varchar(100) NOT NULL DEFAULT '',
  `edited_by` varchar(200) NOT NULL DEFAULT '',
  `edited_date` datetime NOT NULL DEFAULT '2000-01-01 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

Example Database Entry

Orgs are stored in the database in the "orgs" table. A typical entry will look as below.

...

themeEclipse
languagetext

...

Image Added


Database Schema

The database schema can be found in the application is the user has database::read permission by going to menu: Admin -> Database -> List Tables, then clicking on the details button for the table.


API / Web Access

You can access the

...

collection using the normal Open-AudIT JSON based API. Just like any other collection. Please

...

see The Open-AudIT API documentation for further details

...

API Routes

...

Request Method

...

ID

...

Action

...

Resulting Function

...

URL Example

...

Notes

...

.

...

Web Application Routes

...

Request Method

...

ID

...

Action

...

Resulting Function

...

URL Example

...

Notes

...