forked from MarseyWorld/MarseyWorld
sfdsfd
parent
3e2e83695c
commit
f8f91d4a24
|
@ -261,7 +261,7 @@ def agendaposters(v):
|
||||||
|
|
||||||
|
|
||||||
@app.get("/admin/image_posts")
|
@app.get("/admin/image_posts")
|
||||||
@admin_level_required(3)
|
@admin_level_required(2)
|
||||||
def image_posts_listing(v):
|
def image_posts_listing(v):
|
||||||
|
|
||||||
try: page = int(request.values.get('page', 1))
|
try: page = int(request.values.get('page', 1))
|
||||||
|
@ -279,7 +279,7 @@ def image_posts_listing(v):
|
||||||
|
|
||||||
|
|
||||||
@app.get("/admin/reported/posts")
|
@app.get("/admin/reported/posts")
|
||||||
@admin_level_required(3)
|
@admin_level_required(2)
|
||||||
def reported_posts(v):
|
def reported_posts(v):
|
||||||
|
|
||||||
page = max(1, int(request.values.get("page", 1)))
|
page = max(1, int(request.values.get("page", 1)))
|
||||||
|
@ -300,7 +300,7 @@ def reported_posts(v):
|
||||||
|
|
||||||
|
|
||||||
@app.get("/admin/reported/comments")
|
@app.get("/admin/reported/comments")
|
||||||
@admin_level_required(3)
|
@admin_level_required(2)
|
||||||
def reported_comments(v):
|
def reported_comments(v):
|
||||||
|
|
||||||
page = max(1, int(request.values.get("page", 1)))
|
page = max(1, int(request.values.get("page", 1)))
|
||||||
|
@ -325,7 +325,7 @@ def reported_comments(v):
|
||||||
standalone=True)
|
standalone=True)
|
||||||
|
|
||||||
@app.get("/admin")
|
@app.get("/admin")
|
||||||
@admin_level_required(3)
|
@admin_level_required(2)
|
||||||
def admin_home(v):
|
def admin_home(v):
|
||||||
with open('./disablesignups', 'r') as f:
|
with open('./disablesignups', 'r') as f:
|
||||||
x = f.read()
|
x = f.read()
|
||||||
|
@ -346,7 +346,7 @@ def disablesignups(v):
|
||||||
return {"message": "Signups disabled!"}
|
return {"message": "Signups disabled!"}
|
||||||
|
|
||||||
@app.get("/admin/badge_grant")
|
@app.get("/admin/badge_grant")
|
||||||
@admin_level_required(4)
|
@admin_level_required(2)
|
||||||
def badge_grant_get(v):
|
def badge_grant_get(v):
|
||||||
|
|
||||||
badge_types = g.db.query(BadgeDef).all()
|
badge_types = g.db.query(BadgeDef).all()
|
||||||
|
@ -368,7 +368,7 @@ def badge_grant_get(v):
|
||||||
|
|
||||||
@app.post("/admin/badge_grant")
|
@app.post("/admin/badge_grant")
|
||||||
@limiter.limit("1/second")
|
@limiter.limit("1/second")
|
||||||
@admin_level_required(4)
|
@admin_level_required(2)
|
||||||
@validate_formkey
|
@validate_formkey
|
||||||
def badge_grant_post(v):
|
def badge_grant_post(v):
|
||||||
|
|
||||||
|
@ -429,7 +429,7 @@ def users_list(v):
|
||||||
)
|
)
|
||||||
|
|
||||||
@app.get("/admin/alt_votes")
|
@app.get("/admin/alt_votes")
|
||||||
@admin_level_required(4)
|
@admin_level_required(2)
|
||||||
def alt_votes_get(v):
|
def alt_votes_get(v):
|
||||||
|
|
||||||
if not request.values.get("u1") or not request.values.get("u2"):
|
if not request.values.get("u1") or not request.values.get("u2"):
|
||||||
|
@ -539,7 +539,7 @@ def alt_votes_get(v):
|
||||||
|
|
||||||
@app.post("/admin/link_accounts")
|
@app.post("/admin/link_accounts")
|
||||||
@limiter.limit("1/second")
|
@limiter.limit("1/second")
|
||||||
@admin_level_required(4)
|
@admin_level_required(2)
|
||||||
@validate_formkey
|
@validate_formkey
|
||||||
def admin_link_accounts(v):
|
def admin_link_accounts(v):
|
||||||
|
|
||||||
|
@ -559,7 +559,7 @@ def admin_link_accounts(v):
|
||||||
|
|
||||||
|
|
||||||
@app.get("/admin/removed")
|
@app.get("/admin/removed")
|
||||||
@admin_level_required(3)
|
@admin_level_required(2)
|
||||||
def admin_removed(v):
|
def admin_removed(v):
|
||||||
|
|
||||||
page = int(request.values.get("page", 1))
|
page = int(request.values.get("page", 1))
|
||||||
|
@ -876,7 +876,7 @@ def unban_user(user_id, v):
|
||||||
|
|
||||||
@app.post("/ban_post/<post_id>")
|
@app.post("/ban_post/<post_id>")
|
||||||
@limiter.limit("1/second")
|
@limiter.limit("1/second")
|
||||||
@admin_level_required(3)
|
@admin_level_required(2)
|
||||||
@validate_formkey
|
@validate_formkey
|
||||||
def ban_post(post_id, v):
|
def ban_post(post_id, v):
|
||||||
|
|
||||||
|
@ -914,7 +914,7 @@ def ban_post(post_id, v):
|
||||||
|
|
||||||
@app.post("/unban_post/<post_id>")
|
@app.post("/unban_post/<post_id>")
|
||||||
@limiter.limit("1/second")
|
@limiter.limit("1/second")
|
||||||
@admin_level_required(3)
|
@admin_level_required(2)
|
||||||
@validate_formkey
|
@validate_formkey
|
||||||
def unban_post(post_id, v):
|
def unban_post(post_id, v):
|
||||||
|
|
||||||
|
@ -972,7 +972,7 @@ def api_distinguish_post(post_id, v):
|
||||||
|
|
||||||
|
|
||||||
@app.post("/sticky/<post_id>")
|
@app.post("/sticky/<post_id>")
|
||||||
@admin_level_required(3)
|
@admin_level_required(2)
|
||||||
def api_sticky_post(post_id, v):
|
def api_sticky_post(post_id, v):
|
||||||
|
|
||||||
post = g.db.query(Submission).filter_by(id=post_id).first()
|
post = g.db.query(Submission).filter_by(id=post_id).first()
|
||||||
|
@ -1089,7 +1089,7 @@ def admin_dump_cache(v):
|
||||||
|
|
||||||
|
|
||||||
@app.get("/admin/banned_domains/")
|
@app.get("/admin/banned_domains/")
|
||||||
@admin_level_required(4)
|
@admin_level_required(2)
|
||||||
def admin_banned_domains(v):
|
def admin_banned_domains(v):
|
||||||
|
|
||||||
banned_domains = g.db.query(BannedDomain).all()
|
banned_domains = g.db.query(BannedDomain).all()
|
||||||
|
@ -1097,7 +1097,7 @@ def admin_banned_domains(v):
|
||||||
|
|
||||||
@app.post("/admin/banned_domains")
|
@app.post("/admin/banned_domains")
|
||||||
@limiter.limit("1/second")
|
@limiter.limit("1/second")
|
||||||
@admin_level_required(4)
|
@admin_level_required(2)
|
||||||
@validate_formkey
|
@validate_formkey
|
||||||
def admin_toggle_ban_domain(v):
|
def admin_toggle_ban_domain(v):
|
||||||
|
|
||||||
|
@ -1133,7 +1133,7 @@ def admin_toggle_ban_domain(v):
|
||||||
|
|
||||||
@app.post("/admin/nuke_user")
|
@app.post("/admin/nuke_user")
|
||||||
@limiter.limit("1/second")
|
@limiter.limit("1/second")
|
||||||
@admin_level_required(4)
|
@admin_level_required(2)
|
||||||
@validate_formkey
|
@validate_formkey
|
||||||
def admin_nuke_user(v):
|
def admin_nuke_user(v):
|
||||||
|
|
||||||
|
@ -1167,7 +1167,7 @@ def admin_nuke_user(v):
|
||||||
|
|
||||||
@app.post("/admin/unnuke_user")
|
@app.post("/admin/unnuke_user")
|
||||||
@limiter.limit("1/second")
|
@limiter.limit("1/second")
|
||||||
@admin_level_required(4)
|
@admin_level_required(2)
|
||||||
@validate_formkey
|
@validate_formkey
|
||||||
def admin_nunuke_user(v):
|
def admin_nunuke_user(v):
|
||||||
|
|
||||||
|
|
|
@ -101,7 +101,7 @@ def edit_oauth_app(v, aid):
|
||||||
|
|
||||||
@app.post("/admin/app/approve/<aid>")
|
@app.post("/admin/app/approve/<aid>")
|
||||||
@limiter.limit("1/second")
|
@limiter.limit("1/second")
|
||||||
@admin_level_required(3)
|
@admin_level_required(2)
|
||||||
@validate_formkey
|
@validate_formkey
|
||||||
def admin_app_approve(v, aid):
|
def admin_app_approve(v, aid):
|
||||||
|
|
||||||
|
@ -136,7 +136,7 @@ def admin_app_approve(v, aid):
|
||||||
|
|
||||||
@app.post("/admin/app/revoke/<aid>")
|
@app.post("/admin/app/revoke/<aid>")
|
||||||
@limiter.limit("1/second")
|
@limiter.limit("1/second")
|
||||||
@admin_level_required(3)
|
@admin_level_required(2)
|
||||||
@validate_formkey
|
@validate_formkey
|
||||||
def admin_app_revoke(v, aid):
|
def admin_app_revoke(v, aid):
|
||||||
|
|
||||||
|
@ -162,7 +162,7 @@ def admin_app_revoke(v, aid):
|
||||||
|
|
||||||
@app.post("/admin/app/reject/<aid>")
|
@app.post("/admin/app/reject/<aid>")
|
||||||
@limiter.limit("1/second")
|
@limiter.limit("1/second")
|
||||||
@admin_level_required(3)
|
@admin_level_required(2)
|
||||||
@validate_formkey
|
@validate_formkey
|
||||||
def admin_app_reject(v, aid):
|
def admin_app_reject(v, aid):
|
||||||
|
|
||||||
|
@ -187,7 +187,7 @@ def admin_app_reject(v, aid):
|
||||||
|
|
||||||
|
|
||||||
@app.get("/admin/app/<aid>")
|
@app.get("/admin/app/<aid>")
|
||||||
@admin_level_required(3)
|
@admin_level_required(2)
|
||||||
def admin_app_id(v, aid):
|
def admin_app_id(v, aid):
|
||||||
|
|
||||||
aid=aid
|
aid=aid
|
||||||
|
@ -213,7 +213,7 @@ def admin_app_id(v, aid):
|
||||||
)
|
)
|
||||||
|
|
||||||
@app.get("/admin/app/<aid>/comments")
|
@app.get("/admin/app/<aid>/comments")
|
||||||
@admin_level_required(3)
|
@admin_level_required(2)
|
||||||
def admin_app_id_comments(v, aid):
|
def admin_app_id_comments(v, aid):
|
||||||
|
|
||||||
aid=aid
|
aid=aid
|
||||||
|
@ -242,7 +242,7 @@ def admin_app_id_comments(v, aid):
|
||||||
|
|
||||||
|
|
||||||
@app.get("/admin/apps")
|
@app.get("/admin/apps")
|
||||||
@admin_level_required(3)
|
@admin_level_required(2)
|
||||||
def admin_apps_list(v):
|
def admin_apps_list(v):
|
||||||
|
|
||||||
apps = g.db.query(OauthApp).all()
|
apps = g.db.query(OauthApp).all()
|
||||||
|
|
Loading…
Reference in New Issue