lib/punchblock/command/unjoin.rb in punchblock-0.7.1 vs lib/punchblock/command/unjoin.rb in punchblock-0.7.2
- old
+ new
@@ -6,11 +6,11 @@
##
# Create an ujoin message
#
# @param [Hash] options
# @option options [String, Optional] :other_call_id the call ID to unjoin
- # @option options [String, Optional] :mixer_id the mixer name to unjoin
+ # @option options [String, Optional] :mixer_name the mixer name to unjoin
#
# @return [Command::Unjoin] a formatted Rayo unjoin command
#
def self.new(options = {})
super().tap do |new_node|
@@ -30,21 +30,21 @@
write_attr :'call-id', other
end
##
# @return [String] the mixer name to unjoin
- def mixer_id
- read_attr :'mixer-id'
+ def mixer_name
+ read_attr :'mixer-name'
end
##
# @param [String] other the mixer name to unjoin
- def mixer_id=(other)
- write_attr :'mixer-id', other
+ def mixer_name=(other)
+ write_attr :'mixer-name', other
end
def inspect_attributes # :nodoc:
- [:other_call_id, :mixer_id] + super
+ [:other_call_id, :mixer_name] + super
end
end # Unjoin
end # Command
end # Punchblock