zabbixapi 0.5.0a → 0.5.0b

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -217,17 +217,18 @@ zbx.screens.get_or_create_for_host(
217
217
  )
218
218
  ```
219
219
 
220
- ### Create UserGroup, add user and add rights ###
220
+ ### Create UserGroup, add user and set permission ###
221
221
  ```ruby
222
222
  zbx.usergroups.get_or_create(:name => "Some user group")
223
223
  zbx.usergroups.add_user(
224
224
  :usrgrpids => [zbx.usergroups.get_id(:name => "Some user group")],
225
225
  :userids => [zbx.users.get_id(:name => "Some user")]
226
226
  )
227
- # get read permissions for UserGroup on all hostgroup
227
+ # set write and read permissions for UserGroup on all hostgroups
228
228
  zbx.usergroups.set_perm_read(
229
229
  :usrgrpid => zbx.usergroups.get_or_create(:name => "Some user group"),
230
- :hostgroupids => zbx.hostgroups.all.values
230
+ :hostgroupids => zbx.hostgroups.all.values,
231
+ :permission => 3 # 2- read (by default) and 3 - write and read
231
232
  )
232
233
  ```
233
234
 
@@ -98,7 +98,7 @@ class ZabbixApi
98
98
  result = @client.api_request(
99
99
  :method => "usergroup.massAdd",
100
100
  :params => {
101
- :usrgrpids => [data[:usrgrpids]],
101
+ :usrgrpids => [data[:usrgrpid]],
102
102
  :rights => data[:hostgroupids].map { |t| {:permission => permission, :id => t} }
103
103
  }
104
104
  )
@@ -1,3 +1,3 @@
1
1
  class ZabbixApi
2
- VERSION = "0.5.0a"
2
+ VERSION = "0.5.0b"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zabbixapi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0a
4
+ version: 0.5.0b
5
5
  prerelease: 5
6
6
  platform: ruby
7
7
  authors:
@@ -58,7 +58,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
58
58
  version: '0'
59
59
  segments:
60
60
  - 0
61
- hash: -2374189325789372111
61
+ hash: 3354477705725061225
62
62
  required_rubygems_version: !ruby/object:Gem::Requirement
63
63
  none: false
64
64
  requirements: