Class: ZendeskAPI::User
- Inherits:
-
Resource
- Object
- Data
- DataResource
- Resource
- ZendeskAPI::User
- Extended by:
- CreateMany, CreateOrUpdate, CreateOrUpdateMany, DestroyMany, UpdateMany
- Defined in:
- lib/zendesk_api/resources.rb,
lib/zendesk_api/resources.rb
Defined Under Namespace
Classes: CurrentSession, GroupMembership, Identity, Session
Instance Attribute Summary
Attributes inherited from DataResource
Attributes inherited from Data
#association, #attributes, #errors, #response
Class Method Summary collapse
-
.incremental_export(client, start_time) ⇒ Collection
Gets a incremental export of users from the start_time until now.
Instance Method Summary collapse
- #attributes_for_save ⇒ Object
-
#change_password(opts = {}) ⇒ Object
Change a user’s password.
-
#change_password!(opts = {}) ⇒ Object
Change a user’s password.
- #clear_sessions ⇒ Object
- #clear_sessions! ⇒ Object
- #current_session ⇒ Object
- #handle_response ⇒ Object
-
#set_password(opts = {}) ⇒ Object
Set a user’s password.
-
#set_password!(opts = {}) ⇒ Object
Set a user’s password.
Methods included from CreateMany
Methods included from UpdateMany
Methods included from CreateOrUpdate
Methods included from CreateOrUpdateMany
Methods included from DestroyMany
Methods included from Destroy
#destroy, #destroy!, #destroyed?, included
Methods included from Update
Methods included from Save
#clear_associations, #save, #save!, #save_associations
Methods included from Create
Methods included from Read
Methods included from Sideloading
Methods inherited from DataResource
Methods included from Verbs
Methods inherited from Data
#==, #id, inherited, #initialize, #loaded_associations, #method_missing, namespace, new_from_response, #new_record?, #path, resource_name, resource_path, #respond_to_missing?, singular_resource_name, subclasses, #to_json, #to_s
Methods included from Associations
Constructor Details
This class inherits a constructor from ZendeskAPI::Data
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class ZendeskAPI::Data
Class Method Details
.incremental_export(client, start_time) ⇒ Collection
Gets a incremental export of users from the start_time until now.
769 770 771 |
# File 'lib/zendesk_api/resources.rb', line 769 def self.incremental_export(client, start_time) ZendeskAPI::Collection.new(client, self, :path => "incremental/users?start_time=#{start_time.to_i}") end |
Instance Method Details
#attributes_for_save ⇒ Object
828 829 830 831 832 833 834 835 836 837 |
# File 'lib/zendesk_api/resources.rb', line 828 def attributes_for_save # Don't send role_id, it's necessary # for side-loading, but causes problems on save # see #initialize attrs = attributes.changes.delete_if do |k, _| k == "role_id" end { self.class.singular_resource_name => attrs } end |
#change_password(opts = {}) ⇒ Object
Change a user’s password
751 752 753 |
# File 'lib/zendesk_api/resources.rb', line 751 def change_password(opts = {}) password(opts.merge(:verb => :put)) end |
#change_password!(opts = {}) ⇒ Object
Change a user’s password
761 762 763 |
# File 'lib/zendesk_api/resources.rb', line 761 def change_password!(opts = {}) password!(opts.merge(:verb => :put)) end |
#clear_sessions ⇒ Object
800 801 802 803 804 |
# File 'lib/zendesk_api/resources.rb', line 800 def clear_sessions clear_sessions! rescue ZendeskAPI::Error::ClientError false end |
#clear_sessions! ⇒ Object
796 797 798 |
# File 'lib/zendesk_api/resources.rb', line 796 def clear_sessions! @client.connection.delete(path + '/sessions') end |
#current_session ⇒ Object
790 791 792 |
# File 'lib/zendesk_api/resources.rb', line 790 def current_session ZendeskAPI::User::CurrentSession.find(@client, :user_id => 'me') end |
#handle_response ⇒ Object
839 840 841 842 843 844 |
# File 'lib/zendesk_api/resources.rb', line 839 def handle_response(*) super # Needed for proper Role sideloading self.role_id = role.name if key?(:role) end |
#set_password(opts = {}) ⇒ Object
Set a user’s password
746 747 748 |
# File 'lib/zendesk_api/resources.rb', line 746 def set_password(opts = {}) password(opts.merge(:verb => :post)) end |
#set_password!(opts = {}) ⇒ Object
Set a user’s password
756 757 758 |
# File 'lib/zendesk_api/resources.rb', line 756 def set_password!(opts = {}) password!(opts.merge(:verb => :post)) end |