Hello,
why the gem doesn't include UserRelated for user similarly as there is TicketRelated for tickets? There is API for that and adding it is question of two lines (not counting opening classes as those are already open in code) ... or can be monkey patches like this:
module ZendeskAPI
unless defined?(UserRelated)
class UserRelated < DataResource; end
class User
has :related, :class => UserRelated
end
end
end
Hello, why the gem doesn't include UserRelated for user similarly as there is TicketRelated for tickets? There is API for that and adding it is question of two lines (not counting opening classes as those are already open in code) ... or can be monkey patches like this: