kyleboe/zoom_rb

View on GitHub
lib/zoom/actions/groups.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
 
module Zoom
module Actions
module Groups
extend Zoom::Actions
 
get 'groups_list', '/groups'
 
get 'groups_get', '/groups/:group_id'
 
post 'group_create', '/groups',
permit: :name
 
patch 'group_update', '/groups/:group_id',
permit: :name
end
end
end