Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hivemind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
hivemind
Commits
98f19814
Commit
98f19814
authored
7 years ago
by
furion
Browse files
Options
Downloads
Patches
Plain Diff
[community] custom_json id overloading
parent
b12e0989
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hivetools/community.py
+3
-2
3 additions, 2 deletions
hivetools/community.py
setup.py
+1
-0
1 addition, 0 deletions
setup.py
with
4 additions
and
2 deletions
hivetools/community.py
+
3
−
2
View file @
98f19814
...
...
@@ -25,8 +25,9 @@ class Community:
"""
_id
=
'
com.steemit.community
'
_roles
=
[
'
admin
'
,
'
moderator
'
,
'
poster
'
]
_valid_settings
=
[
'
nam
e
'
,
'
about
'
,
'
description
'
,
'
language
'
,
'
nsfw
'
]
_valid_settings
=
[
'
titl
e
'
,
'
about
'
,
'
description
'
,
'
language
'
,
'
is_
nsfw
'
]
def
__init__
(
self
,
community_name
:
str
,
account_name
:
str
,
steem_instance
:
Steem
=
None
,
**
kwargs
):
self
.
steem
=
steem_instance
or
Steem
(
**
kwargs
)
...
...
@@ -132,7 +133,7 @@ class Community:
**
{
'
json
'
:
community_op
,
'
required_auths
'
:
[],
'
required_posting_auths
'
:
[
self
.
account
],
'
id
'
:
'
com.steemit.c
ommunity
'
})
'
id
'
:
C
ommunity
.
_id
})
return
self
.
steem
.
commit
.
finalizeOp
(
op
,
self
.
account
,
'
posting
'
)
def
_op
(
self
,
action
:
str
,
**
params
):
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
0
View file @
98f19814
...
...
@@ -25,6 +25,7 @@ setup(
'
pytest-console-scripts
'
],
install_requires
=
[
'
steem==0.18.1
'
,
'
maya
'
,
'
toolz
'
,
'
funcy
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment