Skip to content
Snippets Groups Projects
Commit cbb74d37 authored by Martin Lees's avatar Martin Lees Committed by Howo
Browse files

small fix

parent 9dc83b3b
No related branches found
No related tags found
No related merge requests found
......@@ -9,12 +9,14 @@ declare
__role_id SMALLINT;
BEGIN
SELECT id INTO __subscription_id FROM hive_subscriptions WHERE account_id = _account_id AND community_id = _community_id;
-- We allow setting the MUTED role even if you're not subscribed
if _role_id IS NOT NULL AND _role_id < 0 THEN
SELECT role_id INTO __role_id FROM hive_roles WHERE account_id = _account_id AND community_id = _community_id;
-- We don't allow setting a higher role than the current one if you aren't subscribed
IF __subscription_id IS NULL AND ((__role_id IS NOT NULL AND __role_id < _role_id ) OR __role_id IS NULL) THEN
return false;
IF _role_id IS NOT NULL THEN
-- We allow setting the MUTED role even if you're not subscribed
IF _role_id > 0 THEN
SELECT role_id INTO __role_id FROM hive_roles WHERE account_id = _account_id AND community_id = _community_id;
-- We don't allow setting a higher role than the current one if you aren't subscribed
IF __subscription_id IS NULL AND ((__role_id IS NOT NULL AND __role_id < _role_id ) OR __role_id IS NULL) THEN
return false;
END IF;
END IF;
ELSE
IF __subscription_id IS NULL THEN
......
  • Howo @howo

    mentioned in commit 26a4f1b0

    ·

    mentioned in commit 26a4f1b0

    Toggle commit list
  • Howo @howo

    mentioned in commit 44b1d438

    ·

    mentioned in commit 44b1d438

    Toggle commit list
  • Howo @howo

    mentioned in commit 049ae7fa

    ·

    mentioned in commit 049ae7fa

    Toggle commit list
  • Howo @howo

    mentioned in commit 95917a54

    ·

    mentioned in commit 95917a54

    Toggle commit list
  • Howo @howo

    mentioned in commit c4694d12

    ·

    mentioned in commit c4694d12

    Toggle commit list
  • Howo @howo

    mentioned in commit 2f5a5da5

    ·

    mentioned in commit 2f5a5da5

    Toggle commit list
  • Howo @howo

    mentioned in commit ced68c49

    ·

    mentioned in commit ced68c49

    Toggle commit list
  • Howo @howo

    mentioned in commit 1d715f18

    ·

    mentioned in commit 1d715f18

    Toggle commit list
  • Howo @howo

    mentioned in commit 13e985d4

    ·

    mentioned in commit 13e985d4

    Toggle commit list
  • Howo @howo

    mentioned in commit f9f460d7

    ·

    mentioned in commit f9f460d7

    Toggle commit list
  • Howo @howo

    mentioned in commit 3b1b621a

    ·

    mentioned in commit 3b1b621a

    Toggle commit list
  • Howo @howo

    mentioned in commit 80a3a3a1

    ·

    mentioned in commit 80a3a3a1

    Toggle commit list
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment