Skip to content

Commit

Permalink
Fixing type issue with examples
Browse files Browse the repository at this point in the history
  • Loading branch information
cpluta committed Jan 31, 2020
1 parent 2a6d343 commit 2427ee4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
24 changes: 12 additions & 12 deletions docs/roles/creating.rst
Expand Up @@ -160,13 +160,13 @@ When creating a permission it is assigned to a role. When a user has the role th
Identifies id of role.
permissibleName : :type:`string`, :required:`required`
Name of permissible reference. An example would be 'meshes' or 'meshes.{meshName}' to identify access to a specific mesh.
create : type:`boolean`
create : :type:`boolean`
Identifies if role can create data.
update : type:`boolean`
update : :type:`boolean`
Identifies if role can update data.
read : type:`boolean`
read : :type:`boolean`
Identifies if role can read data.
delete : type:`boolean`
delete : :type:`boolean`
Identifies if role can delete data.

.. group-tab:: NodeJS
Expand All @@ -190,13 +190,13 @@ When creating a permission it is assigned to a role. When a user has the role th
Identifies id of role.
permissibleName : :type:`string`, :required:`required`
Name of permissible reference. An example would be 'meshes' or 'meshes.{meshName}' to identify access to a specific mesh.
create : type:`boolean`
create : :type:`boolean`
Identifies if role can create data.
update : type:`boolean`
update : :type:`boolean`
Identifies if role can update data.
read : type:`boolean`
read : :type:`boolean`
Identifies if role can read data.
delete : type:`boolean`
delete : :type:`boolean`
Identifies if role can delete data.

.. group-tab:: C#
Expand All @@ -220,13 +220,13 @@ When creating a permission it is assigned to a role. When a user has the role th
Identifies id of role.
permissibleName : :type:`string`, :required:`required`
Name of permissible reference. An example would be 'meshes' or 'meshes.{meshName}' to identify access to a specific mesh.
create : type:`boolean`
create : :type:`boolean`
Identifies if role can create data.
update : type:`boolean`
update : :type:`boolean`
Identifies if role can update data.
read : type:`boolean`
read : :type:`boolean`
Identifies if role can read data.
delete : type:`boolean`
delete : :type:`boolean`
Identifies if role can delete data.

.. rubric:: Responses
Expand Down
24 changes: 12 additions & 12 deletions docs/roles/updating.rst
Expand Up @@ -157,13 +157,13 @@ Update specific permission from role by id.
Identifies id of permission.
permissibleName : :type:`string`, :required:`required`
Name of permissible reference. An example would be 'meshes' or 'meshes.{meshName}' to identify access to a specific mesh.
create : type:`boolean`
create : :type:`boolean`
Identifies if role can create data.
update : type:`boolean`
update : :type:`boolean`
Identifies if role can update data.
read : type:`boolean`
read : :type:`boolean`
Identifies if role can read data.
delete : type:`boolean`
delete : :type:`boolean`
Identifies if role can delete data.

.. group-tab:: NodeJS
Expand All @@ -190,13 +190,13 @@ Update specific permission from role by id.
Identifies id of permission.
permissibleName : :type:`string`, :required:`required`
Name of permissible reference. An example would be 'meshes' or 'meshes.{meshName}' to identify access to a specific mesh.
create : type:`boolean`
create : :type:`boolean`
Identifies if role can create data.
update : type:`boolean`
update : :type:`boolean`
Identifies if role can update data.
read : type:`boolean`
read : :type:`boolean`
Identifies if role can read data.
delete : type:`boolean`
delete : :type:`boolean`
Identifies if role can delete data.

.. group-tab:: C#
Expand All @@ -220,13 +220,13 @@ Update specific permission from role by id.
Identifies id of permission.
permissibleName : :type:`string`, :required:`required`
Name of permissible reference. An example would be 'meshes' or 'meshes.{meshName}' to identify access to a specific mesh.
create : type:`boolean`
create : :type:`boolean`
Identifies if role can create data.
update : type:`boolean`
update : :type:`boolean`
Identifies if role can update data.
read : type:`boolean`
read : :type:`boolean`
Identifies if role can read data.
delete : type:`boolean`
delete : :type:`boolean`
Identifies if role can delete data.

.. rubric:: Responses
Expand Down

0 comments on commit 2427ee4

Please sign in to comment.