Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • 2mln_blocks_test
  • abw_rshares_experiment
  • bridge_get_account_posts
  • bw_ci_validating_test
  • bw_list_comments_by_permlink_opt_patterns
  • dk-5e6-patterns
  • dk-database-api-tests-001
  • dk-diff-log
  • dk-fix-order-in-some-tests
  • dk-follow-item-overwrite-fix
  • dk-follow-refactor
  • dk-functional-example
  • dk-list-votes-pre24
  • dk-mock-follow-tests
  • dk-mock-follow-tests-2
  • dk-mock-vops-tests
  • dk-pytest-benchmark
  • follow_api_tests
  • get_accounts
  • get_blog_entries
  • get_ranked_posts
  • issue_37_trend_and_hot
  • jsalyers-more-blacklist-updates
  • klesniak-api-tests-pyresttests
  • km_hafah_MR15
  • km_issue_151_revert
  • kmochocki/add-slow-call
  • kmochocki/ci
  • kmochocki/hivemind-testing
  • kudmich/prepare_tavern_tests_to_working_with_postgrest
  • master
  • mi_correct_notif_cache_update
  • mi_mention_date_changed
  • mi_notifications_in_cache
  • mi_test_for_bridge_get_ranked_posts
  • msochacki_tests
  • mt-47
  • mt-find-list-votes
  • mt-further-pids-refactoring
  • mt-further-pids-refactoring-old
  • mt-get-pids-fix
  • mt-get-profile-new-patterns
  • mt-grayed
  • mt-lack-of-post-forces-empty-pattern
  • mt-list-comments-fix
  • mt-main-unit
  • mt-pids-performance-refactoring
  • mz-hivemind-benchmark-parser
  • pczempiel_community
  • pczempiel_date_changes
  • pczempiel_new_tests
  • pmaniora_account_notifications_tests
  • pmaniora_communities_sql
  • pmaniora_community_fixes
  • pmaniora_fullsync_slow_calls
  • pmaniora_new_tests
  • request-execution-time
  • revert-36610d67
  • tmp
59 results

Target

Select target project
  • hive/tests_api
1 result
Select Git revision
  • 2mln_blocks_test
  • abw_rshares_experiment
  • bridge_get_account_posts
  • bw_ci_validating_test
  • bw_list_comments_by_permlink_opt_patterns
  • dk-5e6-patterns
  • dk-database-api-tests-001
  • dk-diff-log
  • dk-fix-order-in-some-tests
  • dk-follow-item-overwrite-fix
  • dk-follow-refactor
  • dk-functional-example
  • dk-list-votes-pre24
  • dk-mock-follow-tests
  • dk-mock-follow-tests-2
  • dk-mock-vops-tests
  • dk-pytest-benchmark
  • follow_api_tests
  • get_accounts
  • get_blog_entries
  • get_ranked_posts
  • issue_37_trend_and_hot
  • jsalyers-more-blacklist-updates
  • klesniak-api-tests-pyresttests
  • km_hafah_MR15
  • km_issue_151_revert
  • kmochocki/add-slow-call
  • kmochocki/ci
  • kmochocki/hivemind-testing
  • kudmich/prepare_tavern_tests_to_working_with_postgrest
  • master
  • mi_correct_notif_cache_update
  • mi_mention_date_changed
  • mi_notifications_in_cache
  • mi_test_for_bridge_get_ranked_posts
  • msochacki_tests
  • mt-47
  • mt-find-list-votes
  • mt-further-pids-refactoring
  • mt-further-pids-refactoring-old
  • mt-get-pids-fix
  • mt-get-profile-new-patterns
  • mt-grayed
  • mt-lack-of-post-forces-empty-pattern
  • mt-list-comments-fix
  • mt-main-unit
  • mt-pids-performance-refactoring
  • mz-hivemind-benchmark-parser
  • pczempiel_community
  • pczempiel_date_changes
  • pczempiel_new_tests
  • pmaniora_account_notifications_tests
  • pmaniora_communities_sql
  • pmaniora_community_fixes
  • pmaniora_fullsync_slow_calls
  • pmaniora_new_tests
  • request-execution-time
  • revert-36610d67
  • tmp
59 results
Show changes
Showing
with 64 additions and 31 deletions
Lists all subscribers with role, title and time of subscription for given community.
Hardcoded limit of 250. No paging.
method: "bridge.list_subscribers"
params:
{
"community":"{name}"
mandatory, points to community
}
\ No newline at end of file
Took post object and outputs bridge-api normalized version, but at the moment there is no fat node that would be source of unnormalized posts.
Result is basically the same as bridge.get_post.
Depracated.
method: "bridge.normalize_post"
params:
{
"post": {
"author":"{author}" + "permlink::"{permlink}",
mandatory, point to valid post; rest of parameters are irrelevant
}
}
\ No newline at end of file
......@@ -12,9 +12,9 @@ params:
optional, with author when given have to point to valid start post; paging mechanism
"limit":"{limit}",
"limit":{number},
optional, range 1...100; default = 20
optional, 1..100, default = 20
"before_date":"{date}",
......@@ -22,5 +22,5 @@ params:
"truncate_body":{number}
optional, default = 0;
optional, default = 0 (meaning no truncation); reduces maximal size of post body, cutting out all excess
}
\ No newline at end of file
......@@ -13,7 +13,7 @@ params:
start_author + start_permlink : optional, when given have to point to valid start post; paging mechanism (cuts out this and newer posts/reblogs)
"limit":"{number}",
"limit":{number},
optional, 1..100, default = 20
......@@ -21,7 +21,7 @@ params:
optional, default = 0 (meaning no truncation); reduces maximal size of post body, cutting out all excess
"filter_tags":"{list_of_tags}"
"filter_tags":[{list_of_tags}]
has to be left empty, not supported
}
\ No newline at end of file
......@@ -11,15 +11,15 @@ params:
optional, when given have to point on valid start comment
"limit":"{number}",
"limit":{number},
optional, range 1...100; default = 20
optional, range 1..100; default = 20
"truncate_body":{number}
optional, default = 0;
optional, default = 0 (meaning no truncation); reduces maximal size of post body, cutting out all excess
"filter_tags":"{list_of_tags}",
"filter_tags":[{list_of_tags}]
optional, not supported
has to be left empty, not supported
}
\ No newline at end of file
......@@ -8,7 +8,7 @@ params:
start_author + start_permlink : optional, when given have to point to valid start post; paging mechanism (cuts out this and newer posts)
"limit":"{number}",
"limit":{number},
optional, 1..100, default = 20
......@@ -21,7 +21,7 @@ params:
optional, default = 0 (meaning no truncation); reduces maximal size of post body, cutting out all excess
"filter_tags":"{list_of_tags}"
"filter_tags":[{list_of_tags}]
has to be left empty, not supported
}
......@@ -6,23 +6,23 @@ params:
{
"tag":"{account}",
mandatory, have to point on valid account whose feed we are looking at
mandatory, have to point on valid account whose feed we are looking at
"start_author":"{author}" + "start_permlink":"{permlink}",
optional, should point to valid apost
optional, should point to valid apost
"limit":"{number}",
"limit":{number},
optional, range 1...100; default = 20
optional, 1..100, default = 20
"truncate_body":{number}
"truncate_body":{number}
optional, default = 0;
optional, default = 0 (meaning no truncation); reduces maximal size of post body, cutting out all excess
"filter_tags":"{list_of_tags}"
"filter_tags":[{list_of_tags}]
optional, not supported
has to be left empty, not supported
}
Notes for creating patterns:
......
......@@ -10,7 +10,7 @@ params:
start_author + start_permlink : optional, when given have to point to valid start post; paging mechanism (cuts out this and hotter)
"limit":"{number}",
"limit":{number},
optional, 1..100, default = 20
......@@ -23,7 +23,7 @@ params:
optional, default = 0 (meaning no truncation); reduces maximal size of post body, cutting out all excess
"filter_tags":"{list_of_tags}"
"filter_tags":[{list_of_tags}]
has to be left empty, not supported
}
......@@ -8,7 +8,7 @@ params:
start_author + start_permlink : optional, when given have to point to valid start post; paging mechanism (cuts out this and more promoted posts)
"limit":"{number}",
"limit":{number},
optional, 1..100, default = 20
......@@ -21,7 +21,7 @@ params:
optional, default = 0 (meaning no truncation); reduces maximal size of post body, cutting out all excess
"filter_tags":"{list_of_tags}"
"filter_tags":[{list_of_tags}]
has to be left empty, not supported
}
\ No newline at end of file
......@@ -10,7 +10,7 @@ params:
start_author + start_permlink : optional, when given have to point to valid start post; paging mechanism (cuts out this and more trending)
"limit":"{number}",
"limit":{number},
optional, 1..100, default = 20
......@@ -23,7 +23,7 @@ params:
optional, default = 0 (meaning no truncation); reduces maximal size of post body, cutting out all excess
"filter_tags":"{list_of_tags}"
"filter_tags":[{list_of_tags}]
has to be left empty, not supported
}
\ No newline at end of file
......@@ -15,7 +15,7 @@ params:
optional, 'blog'/'ignore' (should be extended with 'blacklists' etc.), default = 'blog'
"limit:"{number}"
"limit:{number}
optional, 1..1000, default = 1000
}
\ No newline at end of file
......@@ -11,7 +11,7 @@ params:
optional, when provided has to point to valid account, paging mechanism (cuts out this and newer follows)
"limit:"{number}"
"limit:{number}
optional, 1..1000, default = 1000
......
......@@ -9,7 +9,7 @@ params:
start_author + start_permlink : optional, when given have to point to valid start post; paging mechanism (cuts out this and more paying replies)
"limit":"{number}",
"limit":{number},
optional, 1..100, default = 20
......
......@@ -13,11 +13,11 @@ params:
optional, when passed it has to point to valid post (paired with start_author)
"limit":"{number}",
"limit":{number},
optional, 1..100, default = 20
"truncate_body":"{number}"
"truncate_body":{number}
optional, default = 0 (meaning no truncation); reduces maximal size of post body, cutting out all excess
}
\ No newline at end of file
Nearly an alias for condenser_api.get_account_reputations, except the results are given in condenser_api style (original condenser_api.get_account_reputations
implementation), while current condenser_api.get_account_reputations uses database_api style (since it was made to match Fat Node implementation)
Alias for condenser_api.get_blog
Alias for condenser_api.get_blog_entries
Alias for condenser_api.get_follow_count
Alias for condenser_api.get_followers
Alias for condenser_api.get_following