lib/monday/resources/activity_log.rb in monday_ruby-0.6.1 vs lib/monday/resources/activity_log.rb in monday_ruby-0.6.2
- old
+ new
@@ -12,10 +12,10 @@
# Allows filtering activity logs using the args option.
# Allows customizing the values to retrieve using the select option.
# By default, ID, event and data are retrieved.
def activity_logs(board_ids, args: {}, select: DEFAULT_SELECT)
query = "query { boards(ids: #{board_ids}) " \
- "{ activity_logs(#{Util.format_args(args)}) {#{Util.format_select(select)}}}}"
+ "{ activity_logs#{Util.format_args(args)} {#{Util.format_select(select)}}}}"
make_request(query)
end
end
end