Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,459
Community Members
 
Community Events
184
Community Groups

In Confluence Questions is there any way of editing reputation thresholds?

In Confluence Questions is there any way of editing reputation thresholds?

 

For example: By default users need 500 points to be able to edit a topic, if I wanted to change this to be 250 points is there any way of achieving this?

1 answer

1 accepted

5 votes
Answer accepted
Joe Clark
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jan 08, 2015

There's not yet an official, supported & documented way to do this.  However, there is a secret REST API that allows this.  You'll need to write and execute a script to make the change.  Here's an example in Python using the Requests library:

import sys
import requests
confluence_url = "http://localhost:1990/confluence"
username = "admin"
password = "admin"
s = requests.session()
# Login with Admin username/password
r = s.post(confluence_url + "/dologin.action", data={"os_username": username, "os_password": password})
if r.status_code != 200:
    print "Login failed"
    print r.text
    sys.exit(1)
# Change the topic reputation threshold to 250 points
r = s.post(confluence_url + "/rest/questions/1.0/admin/permissionThreshold", data={"EDIT_TOPIC": "250"})
if r.status_code != 200:
    print "Failed to update permission threshold"
    print r.text
    sys.exit(1)
    
print "Permission Threshold updated successfully"

 

Edit:

Here are the permissions which can be controlled by reputation limits, and their default thresholds.  You can update them all in a single POST request to the REST API by specifying each one as an individual form parameter.

  • CREATE_DOWN_VOTE - 15
  • UPDATE_QUESTION_TOPICS - 100
  • DELETE_COMMENT - 500
  • UPDATE_QUESTION - 500
  • UPDATE_ANSWER - 500
  • CONVERT_COMMENT - 1500
  • CONVERT_ANSWER - 1500
  • EDIT_TOPIC - 500
  • ACCEPT_ANSWER - 1500
  • UNACCEPT_ANSWER - 1500

 

 

That's great - thank you for that. We will be wanting to customise all of the reputation settings, could you let me know the data tags for each one (vote down, delete, etc)? Thank you for your help.

Joe Clark
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jan 09, 2015

I updated my answer with the full list

Thank you very much

Joe Clark
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jan 12, 2015

No problem! :)

One key question would be how to GET the current value of these settings?  

(So that we can verify that the POST works.)

(It appears that the permissionThreshold resource only provides a POST method, no GET method.)

What I am trying to do is prevent non-admins from creating new topics.

Raising the UPDATE_QUESTION_TOPICS threshold (using the Python + REST script) seems to partially accomplish this – it prevents someone from creating a new topic for a question asked by someone else.

But none of these seem to affect the user's ability to create a new topic for a question they have asked.  Is there a way to do this?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events