-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Publish changes to prod (#566) * avoid statefulsets update errors on actions runs refs #535. (#536) * deprecate demux service. refs #538 (#540) * add handler url from env var & other minor bug fixes (#542) * Add missing env var to config map (#543) * add handler url from env var & other minor bug fixes * add missing env var * fix: update some env vars * fix: update some env vars * fix: replace .env values with the previous ones * Feat/add tx link (#545) * feat: add tx link * feat: remove secrets * setup env workflow (#546) * wip * wip: add env files & db_data to .gitignore * fix: remove .env files * fix: remove .env files * fix: delete unnecessary code * refactor: remove unnecessary code * fix: minimal * Fix/rate action buttons not showing (#547) * wip * wip: add env files & db_data to .gitignore * fix: remove .env files * fix: remove .env files * fix: delete unnecessary code * refactor: remove unnecessary code * fix: minimal * fix: rate buttons not showing in certains densities * Fix/hasura console config (#556) * Deploy to mainnet (#544) * avoid statefulsets update errors on actions runs refs #535. (#536) * deprecate demux service. refs #538 (#540) * add handler url from env var & other minor bug fixes (#542) * Add missing env var to config map (#543) * add handler url from env var & other minor bug fixes * add missing env var * fix: update some env vars * fix: update some env vars * fix: replace .env values with the previous ones Co-authored-by: Andres Gomez <[email protected]> Co-authored-by: JustinCast <[email protected]> * wip * wip: add env files & db_data to .gitignore * fix: remove .env files * fix: remove .env files * fix: delete unnecessary code * refactor: remove unnecessary code * fix: minimal * feat: voting tool revamp * fix: remove comments * fix: add i18n entries * fix: bug fixes * fix: hasura console config Co-authored-by: Xavier <[email protected]> Co-authored-by: Andres Gomez <[email protected]> * Fix/add missing i18n entries (#554) * Deploy to mainnet (#544) * avoid statefulsets update errors on actions runs refs #535. (#536) * deprecate demux service. refs #538 (#540) * add handler url from env var & other minor bug fixes (#542) * Add missing env var to config map (#543) * add handler url from env var & other minor bug fixes * add missing env var * fix: update some env vars * fix: update some env vars * fix: replace .env values with the previous ones Co-authored-by: Andres Gomez <[email protected]> Co-authored-by: JustinCast <[email protected]> * wip * wip: add env files & db_data to .gitignore * fix: remove .env files * fix: remove .env files * fix: delete unnecessary code * refactor: remove unnecessary code * fix: minimal * feat: voting tool revamp * fix: remove comments * fix: add i18n entries * fix: bug fixes Co-authored-by: Xavier <[email protected]> Co-authored-by: Andres Gomez <[email protected]> * docs: add env example (#565) * fix: not able to sync proxies locally (#564) * fix: update hasura version * fix: hasura version && other minor bug fixes * Fix/update hasura version (#567) * fix: remove build:staging statement * latest changes Co-authored-by: Andres Gomez <[email protected]> Co-authored-by: JustinCast <[email protected]> * Update push-master-environment.yaml (#576) * fix(cron): update config values (#579) * Revert "fix(cron): update config values (#579)" (#580) This reverts commit 13ecf78. * add(link sidebar): Add network Monitor in sidebar * fix(design): Align BP cards in all screen resolutions * fix(bp page): Fix broke design in bp page * fix(voting-tool): apply changes on design * fix(proxy-component): change cards and voting tool proxy design * fix(vote-bp): change method got to top page * fix(content): delete unnecessary console.log * fix(design): delete unnecessary backgraound color * fix(front-end): delete unnecessary code * fix(radar-component): change radar label font size * fix(code): delete unnecessary code * fix(code): delete unnecessary code * fix(code): delete unnecessary code * fix(front-end): change size proxy cards * fix(front-end): fix homepage design * fix(rate-tool): fix mobile design * fix(radar): change radar size * fix(envar): update envar * fix(db): add select permission to eden_rating_stats * fix(bp-profile): delete horizontal overflow * feat(filter): create eden top date * fix(design): fix broke design on proxy profile * fix(bp-profile): fix load eden rate * fix(front-end): change button texts Co-authored-by: Xavier <[email protected]> Co-authored-by: Andres Gomez <[email protected]> Co-authored-by: JustinCast <[email protected]> Co-authored-by: Xavier Fernandez <[email protected]>
- Loading branch information
1 parent
c6000e4
commit a4ae543
Showing
16 changed files
with
107 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
hasura/migrations/default/1630079306181_run_sql_migration/down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
-- Could not auto-generate a down migration. | ||
-- Please write an appropriate down migration for the SQL below: | ||
-- CREATE OR REPLACE VIEW "public"."producers_list" AS | ||
-- SELECT producers.owner, | ||
-- producers.bpjson, | ||
-- producers.system, | ||
-- ((producers.bpjson -> 'org'::text) ->> 'candidate_name'::text) AS candidate_name, | ||
-- (producers.system ->> 'total_votes'::text) AS total_votes, | ||
-- ratings_stats.average, | ||
-- ratings_stats.transparency, | ||
-- ratings_stats.infrastructure, | ||
-- ratings_stats.trustiness, | ||
-- ratings_stats.community, | ||
-- ratings_stats.development, | ||
-- ratings_stats.ratings_cntr, | ||
-- producers.general_info | ||
-- FROM (producers | ||
-- FULL JOIN ratings_stats ON (((ratings_stats.bp)::text = producers.owner)) | ||
-- FULL JOIN eden_ratings_stats ON eden_ratings_stats.bp = producers.owner); |
17 changes: 17 additions & 0 deletions
17
hasura/migrations/default/1630079306181_run_sql_migration/up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
CREATE OR REPLACE VIEW "public"."producers_list" AS | ||
SELECT producers.owner, | ||
producers.bpjson, | ||
producers.system, | ||
((producers.bpjson -> 'org'::text) ->> 'candidate_name'::text) AS candidate_name, | ||
(producers.system ->> 'total_votes'::text) AS total_votes, | ||
ratings_stats.average, | ||
ratings_stats.transparency, | ||
ratings_stats.infrastructure, | ||
ratings_stats.trustiness, | ||
ratings_stats.community, | ||
ratings_stats.development, | ||
ratings_stats.ratings_cntr, | ||
producers.general_info | ||
FROM (producers | ||
FULL JOIN ratings_stats ON (((ratings_stats.bp)::text = producers.owner)) | ||
FULL JOIN eden_ratings_stats ON eden_ratings_stats.bp = producers.owner); |
3 changes: 3 additions & 0 deletions
3
hasura/migrations/default/1630081052611_run_sql_migration/down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
-- Could not auto-generate a down migration. | ||
-- Please write an appropriate down migration for the SQL below: | ||
-- drop view "public"."producers_list"; |
1 change: 1 addition & 0 deletions
1
hasura/migrations/default/1630081052611_run_sql_migration/up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
drop view "public"."producers_list"; |
21 changes: 21 additions & 0 deletions
21
hasura/migrations/default/1630081060538_run_sql_migration/down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
-- Could not auto-generate a down migration. | ||
-- Please write an appropriate down migration for the SQL below: | ||
-- CREATE OR REPLACE VIEW "public"."producers_list" AS | ||
-- SELECT producers.owner, | ||
-- producers.bpjson, | ||
-- producers.system, | ||
-- ((producers.bpjson -> 'org'::text) ->> 'candidate_name'::text) AS candidate_name, | ||
-- (producers.system ->> 'total_votes'::text) AS total_votes, | ||
-- eden_ratings_stats.average AS eden_average, | ||
-- eden_ratings_stats.ratings_cntr AS eden_ratings_cntr, | ||
-- ratings_stats.average, | ||
-- ratings_stats.transparency, | ||
-- ratings_stats.infrastructure, | ||
-- ratings_stats.trustiness, | ||
-- ratings_stats.community, | ||
-- ratings_stats.development, | ||
-- ratings_stats.ratings_cntr, | ||
-- producers.general_info | ||
-- FROM (producers | ||
-- FULL JOIN ratings_stats ON (((ratings_stats.bp)::text = producers.owner)) | ||
-- FULL JOIN eden_ratings_stats ON ((eden_ratings_stats.bp)::text = producers.owner)); |
19 changes: 19 additions & 0 deletions
19
hasura/migrations/default/1630081060538_run_sql_migration/up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
CREATE OR REPLACE VIEW "public"."producers_list" AS | ||
SELECT producers.owner, | ||
producers.bpjson, | ||
producers.system, | ||
((producers.bpjson -> 'org'::text) ->> 'candidate_name'::text) AS candidate_name, | ||
(producers.system ->> 'total_votes'::text) AS total_votes, | ||
eden_ratings_stats.average AS eden_average, | ||
eden_ratings_stats.ratings_cntr AS eden_ratings_cntr, | ||
ratings_stats.average, | ||
ratings_stats.transparency, | ||
ratings_stats.infrastructure, | ||
ratings_stats.trustiness, | ||
ratings_stats.community, | ||
ratings_stats.development, | ||
ratings_stats.ratings_cntr, | ||
producers.general_info | ||
FROM (producers | ||
FULL JOIN ratings_stats ON (((ratings_stats.bp)::text = producers.owner)) | ||
FULL JOIN eden_ratings_stats ON ((eden_ratings_stats.bp)::text = producers.owner)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters