Skip to content

Instantly share code, notes, and snippets.

@ianks

ianks/block1.rb Secret

Created June 17, 2017 00:01
Show Gist options
  • Save ianks/34f72da118bf565aef43b2e56ec40236 to your computer and use it in GitHub Desktop.
Save ianks/34f72da118bf565aef43b2e56ec40236 to your computer and use it in GitHub Desktop.
class Post
def initialize(api_client:)
@api_client = api_client
end
def comments(approved: true, status: :unread, **kwargs)
@api_client.fetch_comments(approved: approved, status: status, **kwargs)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment