Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Communities Implementation MVP #7

Merged
merged 19 commits into from
Jan 31, 2019
Merged

Communities Implementation MVP #7

merged 19 commits into from
Jan 31, 2019

Conversation

nicholascc
Copy link
Collaborator

@nicholascc nicholascc commented Jan 21, 2019

This implements communities similarly to as described in the Steem 2017 Roadmap https://steem.com/2017roadmap.pdf.

Anyone can create a community with cmmts_create with id [id]. A community's ID should never be displayed to the end user and is restricted to only the lowercase alphabet including dashes (-). They will automatically receive the role 'owner'. Then they can assign roles owner, admin, mod, author to other users by using cmmts_grant_role with role receiver [receiver], role [role], and in community id [community]. They can also remove the role by using cmmts_remove_role with the same permissions. If a role is granted to the nonexistent account @eo, then it is considered granted to everyone by the node software. This allows for public communities where anyone can post.

Here are the permissions each role has. Note that each role can remove any other user in the same role or below (except author which can only post).

image

Anyone with role author or above can post by creating a post with a property json_metadata of the full network prefix (for mainnet this would be stratos_0_) plus cmmts_post (for example in mainnet this would be stratos_0_cmmts_post) containing the id of the community to post to.

Anyone with role mod or above can block (remove) a post by creating a cmmts_block_post operation with permlink [permlink], author [author], and in community id [community].

Anyone with role mod or above can feature a post by creating a cmmts_feature operation with permlink [permlink], author [author], and in community id [community].

That's the basis of transactions, documentation for APIs will follow soon.

@nicholascc nicholascc changed the title Communities Implementation Communities Implementation MVP Jan 31, 2019
@nicholascc nicholascc merged commit 841247b into stratos-steem:master Jan 31, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant