KURE Development Update 3 - Permissions and Communities You Joined by krnel

View this thread on steempeak.com
· @krnel · (edited)
$51.27
KURE Development Update 3 - Permissions and Communities You Joined
[//]: # (https://github.com/KrNel/kure)

This week I worked on more of the User interconnection with Communities. This meant implementing the ability to add users to groups you own. As such, other users can now see groups that they've been added to! It's getting closer to being a functional app for people to start using.

I also had to deal with a menu bug that I didn't notice when I first added Redux for the authentication. And I finished commenting the whole application (I didn't get around to the server files last time).

<center><img src="https://i.imgur.com/GyrhICy.png" /></center>

<center><img src="https://i.imgur.com/RJc7zXS.png" /></center>

---
# Repository
https://github.com/KrNel/kure

---
# Index
1. What is KURE?
2. New Features
	2.1 Communities You Joined
	2.2 Permissions
		2.2.1 Groups
		2.2.2 Posts
		2.2.3 Users
	2.3 Post stats in the Community listing
3. Bug Fixes
	3.1 'Logout' not showing up right after a login
4. Pull Request / Latest Commits
5. Roadmap
6. Contact

---
# 1. What is Kure?

### Kindred United to Reward Everyone.

#### A Community Platform and Curation Network Remedy for Steem

Do you want to find content that other people really value? How?

Upvotes don't do it, because so many upvotes come from autovoting, autobots, or curation trails. You don't know if a vote for content is done by a real person, or some automation. The content isn't being evaluated when it's automated.

Imagine a curation network where people are interacted through community groups to share and value content, and you can really see what they value globally through various communities that people organize and collaborate together to build.

KURE provides a network hub for people to create their own community groups for evaluating content to curate. It will also develop into communities to create posts within.

Create your own communities and have others join to contribute. Make up your own criteria. Manage who can add curation links to your community group. Anyone else can follow your community and engage.

My goal is to make content easier for everyone to find by all of us sharing the content we like trough communities. Others can find communities they are interested in and see what is being curated within that community to also support it with upvotes, resteems and comments.

Maybe you want to share what you value, and get others to see it or support it, but don't want to resteem it, or want more people to see it. On KURE, the community you create and those who are involve din it will popularize content you value and allow others to see it. Another way of thinking about it, is it's kind of like having a custom community feed, based on a community that engages in creating it, rather than just one person.

---
# 2. New Features

## Video Demonstration

https://vimeo.com/315994258

---
## 2.1 Communities You Joined

The new gem allows you to add people to a community group you own (or have access to add users in) and those people get to see that they "joined" a new community.

The main page component, `Manage.js` now loads two components, and gets different data from the backend server.

#### *[Code snippet](https://github.com/KrNel/kure/blob/d825fbdbc1d57c7a0b123a3df47355d8de78af6f/server/routes/api/groups.js)*

<center><img src="https://i.imgur.com/dFTnNgv.png" /></center>

The querying for the "Communities You Joined" part is more complex, as it needs to check the permissions a use has for a group to see if they can manage that community group. It would be much easier in SQL, I miss it. But I ended up figuring out how to do it with MongoDB:

#### *[Code snippet]()*

<center><img src="https://i.imgur.com/uGaVM8S.png" /></center>

---
## 2.2 Permissions

<div class="pull-right"><center><img src="https://i.imgur.com/PCGtqHr.png" /></center></div>

This is a big move forward to making the app functional. I previously added Roles, but the access and restrictions to add and delete posts, or add and delete users, wasn't implemented.

I made a basic permissions matrix based on `0` for the highest rank, `Owner`, and `3` for the lowest rank, `Member`. There are `Owner`, `Admin`, `Moderator` and `Member` ranks.

---
### 2.2.1 Groups

Only an Owner can delete their Community Group, their Owned groups. If you have been added to another Community Group, that's one you Joined and can't delete. But you can manage parts of it according to your access.

All roles can at least add posts to the community they belong to. This is done by clicking on the name of the community itself, or on the `Edit` icon. The `Joined` communities won't show a `Delete` button.

I check the `type` of group being rendered. If it's an `owned` group, then the `Delete` icon is available. Otherwise, no delete option for you!

#### *[Code snippet](https://github.com/KrNel/kure/blob/d825fbdbc1d57c7a0b123a3df47355d8de78af6f/client/src/components/pages/Manage/GroupsList.js)*

<center><img src="https://i.imgur.com/bbcsuu8.png" /></center>

#### *Visualized*

<center><img src="https://i.imgur.com/VsZGDoC.png" /></center>

---
### 2.2.2 Posts

If you're only a `Member`, you can't delete any posts. `Moderators` and `Admins` can however. I might restrict removals to only be for you're own posts or posts submitted by those with a rank/role lower than you. This way Mods can't couldn't remove posts from Admins, and no one can remove posts from the Owner. I think that may be best. I'll think about it more ;)

When a `Member` views posts, they can't delete them, and after they add one, they can't delete it either. I check to see the current logged in user's `access` and make sure it's less (higher) than the `Member` access of 3 (the lowest):

#### *[Code snippet](https://github.com/KrNel/kure/blob/d825fbdbc1d57c7a0b123a3df47355d8de78af6f/client/src/components/pages/Manage/GroupManagePosts.js)*

<center><img src="https://i.imgur.com/hcIUrJ7.png" /></center>


#### *Visualized*

<center><img src="https://i.imgur.com/BhAa0cQ.png" /></center>

---
### 2.2.3 Users

Adding and removing Users is similar to the posts. A `Member` can't even see the text input field to add a user, or the drop down to select a role. Nada. And while a `Moderator` could delete posts, they can't delete users. That is for `Admins` and `Owners` only

I just check if the logged in user `access` is higher (a lower number) than the cut off role/rank, which is `Moderator` in this case. If it is, then I also check if the the logged in user `access` level is higher (lower number) than the user being displayed `u.access`.

I also don't even allow the user who is the `Owner` to have a delete button when they themselves are viewing their group. Maybe that will change in the future, say for example if I add the feature to make someone else the owner, and then you can remove yourself as the owner to transfer the ownership to them.

#### *[Code snippet](https://github.com/KrNel/kure/blob/d825fbdbc1d57c7a0b123a3df47355d8de78af6f/client/src/components/pages/Manage/GroupManageUsers.js)*

<center><img src="https://i.imgur.com/4n3UjYY.png" /></center>

#### *Visualized*

<center><img src="https://i.imgur.com/znZL11z.png" /></center>

---
## 2.2 Post stats in the Community listing

I started to add some stats to the Community Group listing. Since I did posts before users, I added the state for the amount of `Posts` in a group. I will be adding User counts, as well as other stats for the group.

The `groupToUpdate` is received along with an action, either to `inc` or `dec` the amount of posts shown. The `posts` count value in the `groups` state object is then grabbed and modified with the incremented or decremented value on.

#### *[Code snippet](https://github.com/KrNel/kure/blob/d825fbdbc1d57c7a0b123a3df47355d8de78af6f/client/src/components/pages/Manage/ManageGroups.js)*

<center><img src="https://i.imgur.com/IAHxIP0.png" /></center>

#### *Visualized*

<center><img src="https://i.imgur.com/x0eAGtw.png" /></center>

In the backend, the `posts` count is incremented and decremented as well:

#### *[Code snippet](https://github.com/KrNel/kure/blob/f06ecef11a83ee436acacc12cdf36888c636eb1e/server/routes/manage/posts.js)*

<center><img src="https://i.imgur.com/aX8CJ13.png" /></center>
<center><img src="https://i.imgur.com/J0V12fu.png" /></center>

---
# 3. Bug Fixes

## 3.1 'Logout' not showing up right after a login

When I added the Redux store and put the authentication through it, I was always logged in automatically because of my cookie. I had tested the login, and it worked. But the menu was misbehaving when a login redirected the user right away. 'Logout' and 'Manage' weren't being shown right after the login.

The problem was with calls being made to Redux after logging in. Previously, I handled the `login` and `returning` aspects of the app in the local state and made sure `returning` didn't run when `login` was executing. But with Redux I didn't account for the two running at the same time. I had to add a new flag to say the login process was ongoing: `isLoggingIn`.

Then, I just needed to check if the login process was going on, before I would run a check for a returning user:

#### *[Code snippet](https://github.com/KrNel/kure/blob/d825fbdbc1d57c7a0b123a3df47355d8de78af6f/client/src/actions/authActions.js)*

<center><img src="https://i.imgur.com/5jGLAxR.png" /></center>

<center><img src="https://i.imgur.com/CpIwPpL.png" /></center>

Problem solved! The menu for authenticated users now showed properly right after a login was done.

---
# 4. Pull Request / Latest Commits

- [Pull Request](https://github.com/KrNel/kure/pull/1)
- Commit: [feature: Joined Communities functional, Post stats on group; Bug fix on menu; Fully commented](https://github.com/KrNel/kure/commit/3ae718cce3d04573f36c199958d49d5edb164832)
- Commit: [feature: Permissions for posts and users](https://github.com/KrNel/kure/pull/1/commits/d825fbdbc1d57c7a0b123a3df47355d8de78af6f)

---
# 5. Roadmap

I got the community interaction done this week, which is a good things done. Up next will be the displaying of community information on the homepage, some more stats in the group listings, and hopefully getting to integrate the viewing of posts from the blockchain and adding them directly, rather than with a URL! Big step to move towards, hehe.

You can see the [longer roadmap](https://steemit.com/utopian-io/@krnel/kure-development-update-2-managing-users) in a previous post.

---
# 6. Contact

If you want to contact me, you can reach me on Discord at https://discord.gg/ApUp4jJ, or email at `krnel@protonmail.com`. I'm not really on steem.chat, but I think I get emails if you send me a message.

- [Discord](https://discord.gg/ApUp4jJ)
- Email: `krnel@protonmail.com`

---
Thank you for your time, attention and support! I appreciate it!

Peace.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 260 others
properties (23)
post_id69,868,416
authorkrnel
permlinkkure-development-update-3-permissions-and-communities-you-joined
categoryutopian-io
json_metadata{"community":"busy","app":"busy\/2.5.6","format":"markdown","tags":["utopian-io","development","steemdev","kure","busy"],"users":["krnel","protonmail.com"],"links":["https:\/\/github.com\/KrNel\/kure","https:\/\/github.com\/KrNel\/kure\/blob\/d825fbdbc1d57c7a0b123a3df47355d8de78af6f\/server\/routes\/api\/groups.js","#","https:\/\/github.com\/KrNel\/kure\/blob\/d825fbdbc1d57c7a0b123a3df47355d8de78af6f\/client\/src\/components\/pages\/Manage\/GroupsList.js","https:\/\/github.com\/KrNel\/kure\/blob\/d825fbdbc1d57c7a0b123a3df47355d8de78af6f\/client\/src\/components\/pages\/Manage\/GroupManagePosts.js","https:\/\/github.com\/KrNel\/kure\/blob\/d825fbdbc1d57c7a0b123a3df47355d8de78af6f\/client\/src\/components\/pages\/Manage\/GroupManageUsers.js","https:\/\/github.com\/KrNel\/kure\/blob\/d825fbdbc1d57c7a0b123a3df47355d8de78af6f\/client\/src\/components\/pages\/Manage\/ManageGroups.js","https:\/\/github.com\/KrNel\/kure\/blob\/f06ecef11a83ee436acacc12cdf36888c636eb1e\/server\/routes\/manage\/posts.js","https:\/\/github.com\/KrNel\/kure\/blob\/d825fbdbc1d57c7a0b123a3df47355d8de78af6f\/client\/src\/actions\/authActions.js","https:\/\/github.com\/KrNel\/kure\/pull\/1"],"image":["https:\/\/i.imgur.com\/GyrhICy.png","https:\/\/i.imgur.com\/RJc7zXS.png","https:\/\/i.imgur.com\/dFTnNgv.png","https:\/\/i.imgur.com\/uGaVM8S.png","https:\/\/i.imgur.com\/PCGtqHr.png","https:\/\/i.imgur.com\/bbcsuu8.png","https:\/\/i.imgur.com\/VsZGDoC.png","https:\/\/i.imgur.com\/hcIUrJ7.png","https:\/\/i.imgur.com\/BhAa0cQ.png","https:\/\/i.imgur.com\/4n3UjYY.png","https:\/\/i.imgur.com\/znZL11z.png","https:\/\/i.imgur.com\/IAHxIP0.png","https:\/\/i.imgur.com\/x0eAGtw.png","https:\/\/i.imgur.com\/aX8CJ13.png","https:\/\/i.imgur.com\/J0V12fu.png","https:\/\/i.imgur.com\/5jGLAxR.png","https:\/\/i.imgur.com\/CpIwPpL.png"]}
created2019-02-08 00:36:12
last_update2019-02-11 23:29:48
depth0
children10
net_rshares109,133,329,550,578
last_payout2019-02-15 00:36:12
cashout_time1969-12-31 23:59:59
total_payout_value38.883 SBD
curator_payout_value12.391 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10,808
author_reputation954,992,586,021,436
root_title"KURE Development Update 3 - Permissions and Communities You Joined"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (324)
@steem-ua ·
#### Hi @krnel!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your **UA** account score is currently 7.363 which ranks you at **#62** across all Steem accounts.
Your rank has dropped 1 places in the last three days (old rank 61).

In our last Algorithmic Curation Round, consisting of 233 contributions, your post is ranked at **#171**.
##### Evaluation of your UA score:

* Your follower network is great!
* The readers appreciate your great work!
* Try to work on user engagement: the more people that interact with you via the comments, the higher your UA score!


**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
post_id69,879,958
authorsteem-ua
permlinkre-kure-development-update-3-permissions-and-communities-you-joined-20190208t082133z
categoryutopian-io
json_metadata{"app":"beem\/0.20.18"}
created2019-02-08 08:21:33
last_update2019-02-08 08:21:33
depth1
children0
net_rshares0
last_payout2019-02-15 08:21:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length706
author_reputation23,203,609,903,979
root_title"KURE Development Update 3 - Permissions and Communities You Joined"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@trufflepig ·
**Congratulations!** Your post has been selected as a daily Steemit truffle! It is listed on **rank 10** of all contributions awarded today. You can find the [TOP DAILY TRUFFLE PICKS HERE.](https://steemit.com/@trufflepig/daily-truffle-picks-2019-02-08) 
    
I upvoted your contribution because to my mind your post is at least **9 SBD** worth and should receive **194 votes**. It's now up to the lovely Steemit community to make this come true.

I am `TrufflePig`, an Artificial Intelligence Bot that helps minnows and content curators using Machine Learning. If you are curious how I select content, [you can find an explanation here!](https://steemit.com/steemit/@trufflepig/weekly-truffle-updates-2019-05)
    
Have a nice day and sincerely yours,
![trufflepig](https://raw.githubusercontent.com/SmokinCaterpillar/TrufflePig/master/img/trufflepig17_small.png)
*`TrufflePig`*
    
properties (22)
post_id69,894,751
authortrufflepig
permlinkre-kure-development-update-3-permissions-and-communities-you-joined-20190208t163254
categoryutopian-io
json_metadata{}
created2019-02-08 16:32:57
last_update2019-02-08 16:32:57
depth1
children0
net_rshares0
last_payout2019-02-15 16:32:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length884
author_reputation37,535,693,521,838
root_title"KURE Development Update 3 - Permissions and Communities You Joined"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@helo ·
$10.95
- Great article with images, video and code samples, great layout.
- The code looks great with loads of comments. 
- Could use an intro image at the top of the article, this becomes the thumbnail of the post, so great care should be use to craft it.
- The last commit link is broken.

Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/1-2-1-1-1-1-1-).

---- 
Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm).

[[utopian-moderator]](https://join.utopian.io/)
👍  , , , , , , , , , , , , , , , , , ,
properties (23)
post_id69,899,833
authorhelo
permlinkre-krnel-kure-development-update-3-permissions-and-communities-you-joined-20190208t191601586z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https:\/\/join.utopian.io\/guidelines","https:\/\/review.utopian.io\/result\/3\/1-2-1-1-1-1-1-","https:\/\/discord.gg\/uTyJkNm","https:\/\/join.utopian.io\/"],"app":"steemit\/0.1"}
created2019-02-08 19:16:00
last_update2019-02-08 19:16:00
depth1
children2
net_rshares23,490,809,539,792
last_payout2019-02-15 19:16:00
cashout_time1969-12-31 23:59:59
total_payout_value8.303 SBD
curator_payout_value2.651 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length733
author_reputation119,612,833,307,875
root_title"KURE Development Update 3 - Permissions and Communities You Joined"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (19)
@krnel ·
$0.09
Thanks for the review and tips. I corrected the commit link, didn't notice I messed that up. I added the KURE logo as the intro as well, I had it on the first post but was only putting the screenshot afterwards. It does make a better presentation ;)
👍  
properties (23)
post_id69,904,889
authorkrnel
permlinkre-helo-re-krnel-kure-development-update-3-permissions-and-communities-you-joined-20190208t214018405z
categoryutopian-io
json_metadata{"community":"busy","app":"busy\/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[]}
created2019-02-08 21:40:15
last_update2019-02-08 21:40:15
depth2
children0
net_rshares182,511,024,916
last_payout2019-02-15 21:40:15
cashout_time1969-12-31 23:59:59
total_payout_value0.064 SBD
curator_payout_value0.021 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length249
author_reputation954,992,586,021,436
root_title"KURE Development Update 3 - Permissions and Communities You Joined"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@utopian-io ·
Thank you for your review, @helo! Keep up the good work!
properties (22)
post_id70,009,623
authorutopian-io
permlinkre-re-krnel-kure-development-update-3-permissions-and-communities-you-joined-20190208t191601586z-20190211t110537z
categoryutopian-io
json_metadata{"app":"beem\/0.20.17"}
created2019-02-11 11:05:39
last_update2019-02-11 11:05:39
depth2
children0
net_rshares0
last_payout2019-02-18 11:05:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length56
author_reputation152,913,012,544,965
root_title"KURE Development Update 3 - Permissions and Communities You Joined"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@pennsif ·
This post has been included in the latest edition of  [**SoS Daily News**](https://steemit.com/steem/@pennsif/sos-daily-news-news-about-the-state-of-steem-7-february-2019) - a digest of all you need to know about the State of Steem.
properties (22)
post_id69,903,456
authorpennsif
permlinkre-krnel-kure-development-update-3-permissions-and-communities-you-joined-20190208t205950302z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https:\/\/steemit.com\/steem\/@pennsif\/sos-daily-news-news-about-the-state-of-steem-7-february-2019"],"app":"steemit\/0.1"}
created2019-02-08 20:59:51
last_update2019-02-08 20:59:51
depth1
children0
net_rshares0
last_payout2019-02-15 20:59:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length232
author_reputation1,139,374,949,281,341
root_title"KURE Development Update 3 - Permissions and Communities You Joined"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@valued-customer ·
$0.14
Astounding achievement!  I see a great many evolutions that can arise from this base, and commend you for your diligent and productive work on it.

Thanks!
👍  ,
properties (23)
post_id69,915,469
authorvalued-customer
permlinkre-krnel-kure-development-update-3-permissions-and-communities-you-joined-20190209t042943599z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"steempeak","app":"steempeak\/1.7.2b"}
created2019-02-09 04:30:24
last_update2019-02-09 04:30:24
depth1
children1
net_rshares301,554,261,728
last_payout2019-02-16 04:30:24
cashout_time1969-12-31 23:59:59
total_payout_value0.106 SBD
curator_payout_value0.034 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length155
author_reputation48,231,784,822,393
root_title"KURE Development Update 3 - Permissions and Communities You Joined"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@krnel ·
Thanks for the words of encouragement :) I hope to release it soon. I put out another post today on an update on the browsing of posts ;)
👍  
properties (23)
post_id69,952,775
authorkrnel
permlinkre-valued-customer-re-krnel-kure-development-update-3-permissions-and-communities-you-joined-20190210t021755017z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit\/0.1"}
created2019-02-10 02:17:51
last_update2019-02-10 02:17:51
depth2
children0
net_rshares6,335,311,165
last_payout2019-02-17 02:17:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length137
author_reputation954,992,586,021,436
root_title"KURE Development Update 3 - Permissions and Communities You Joined"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@themadcurator ·
$0.48
properties (23)
post_id69,929,172
authorthemadcurator
permlinkre-kure-development-update-3-permissions-and-communities-you-joined-20190209t131734
categoryutopian-io
json_metadata{}
created2019-02-09 13:17:36
last_update2019-02-09 13:17:36
depth1
children0
net_rshares1,018,438,543,884
last_payout2019-02-16 13:17:36
cashout_time1969-12-31 23:59:59
total_payout_value0.360 SBD
curator_payout_value0.115 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length26
author_reputation53,978,675,295,884
root_title"KURE Development Update 3 - Permissions and Communities You Joined"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (13)
@utopian-io ·
Hey, @krnel!

**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Get higher incentives and support Utopian.io!**
 Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)).

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
post_id69,932,305
authorutopian-io
permlinkre-kure-development-update-3-permissions-and-communities-you-joined-20190209t143416z
categoryutopian-io
json_metadata{"app":"beem\/0.20.17"}
created2019-02-09 14:34:18
last_update2019-02-09 14:34:18
depth1
children0
net_rshares0
last_payout2019-02-16 14:34:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length587
author_reputation152,913,012,544,965
root_title"KURE Development Update 3 - Permissions and Communities You Joined"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000