Method: Radiator::Bridge#method_names

Defined in:
lib/radiator/bridge.rb

#method_namesObject



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/radiator/bridge.rb', line 3

def method_names
  @method_names ||= [
    :normalize_post,
    :get_post_header,
    :get_discussion,
    :get_post,
    :get_account_posts,
    :get_ranked_posts,
    :get_profile,
    :get_trending_topics,
    :get_relationship_between_accounts,
    :post_notifications,
    :account_notifications,
    :unread_notifications,
    :get_payout_stats,
    :get_community,
    :get_community_context,
    :list_communities,
    :list_pop_communities,
    :list_community_roles,
    :list_subscribers,
    :list_all_subscriptions
  ].freeze
end