Skip to content

Commit

Permalink
TEMP deregisters assignment query and visualizations
Browse files Browse the repository at this point in the history
Signed-off-by: James Kunstle <[email protected]>
  • Loading branch information
JamesKunstle committed Oct 5, 2023
1 parent 3398608 commit 925a7b8
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 19 deletions.
32 changes: 16 additions & 16 deletions 8Knot/pages/contributions/contributions.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@
align="center",
style={"marginBottom": ".5%"},
),
dbc.Row(
[
dbc.Col(gc_cntrib_pr_assignment, width=6),
dbc.Col(gc_pr_assignment, width=6),
],
align="center",
style={"marginBottom": ".5%"},
),
# dbc.Row(
# [
# dbc.Col(gc_cntrib_pr_assignment, width=6),
# dbc.Col(gc_pr_assignment, width=6),
# ],
# align="center",
# style={"marginBottom": ".5%"},
# ), # ASSIGNMENT DEREG
dbc.Row(
[
dbc.Col(gc_issue_staleness, width=6),
Expand All @@ -44,14 +44,14 @@
align="center",
style={"marginBottom": ".5%"},
),
dbc.Row(
[
dbc.Col(gc_cntrib_issue_assignment, width=6),
dbc.Col(gc_issue_assignment, width=6),
],
align="center",
style={"marginBottom": ".5%"},
),
# dbc.Row(
# [
# dbc.Col(gc_cntrib_issue_assignment, width=6),
# dbc.Col(gc_issue_assignment, width=6),
# ],
# align="center",
# style={"marginBottom": ".5%"},
# ), # ASSIGNMENT DEREG
dbc.Row(
[
dbc.Col(gc_commits_over_time, width=6),
Expand Down
9 changes: 6 additions & 3 deletions 8Knot/pages/index/index_callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,17 @@
from queries.prs_query import prs_query as prq
from queries.company_query import company_query as cmq
from queries.pr_assignee_query import pr_assignee_query as praq
from queries.issue_assignee_query import issue_assignee_query as iaq
from queries.user_groups_query import user_groups_query as ugq

# from queries.issue_assignee_query import issue_assignee_query as iaq # ASSIGNMENT DEREG
# from queries.user_groups_query import user_groups_query as ugq # ASSIGNMENT DEREG

import redis
import flask


# list of queries to be run
QUERIES = [iq, cq, cnq, prq, cmq, iaq, praq]
# QUERIES = [iq, cq, cnq, prq, cmq, iaq, praq] #ASSIGNMENT DREG
QUERIES = [iq, cq, cnq, prq, cmq]

# check if login has been enabled in config
login_enabled = os.getenv("AUGUR_LOGIN_ENABLED", "False") == "True"
Expand Down

0 comments on commit 925a7b8

Please sign in to comment.