-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
♻️ Fixed widget bug for staging rules (#58)
* update docs * update code in docs * refactored env template to use placeholders instead of actual values * refactored so widget works on staging rules * fixed doc table * updated contributing docs * update docs * improved text * 2.0.7
- Loading branch information
1 parent
e01d78a
commit 860cab4
Showing
7 changed files
with
30 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
VITE_HISTORY_JSON_URL=https://www.ssw.com.au/rules/history.json | ||
VITE_COMMITS_JSON_URL=https://www.ssw.com.au/rules/commits.json | ||
VITE_PROD_HISTORY_JSON_URL=#{PRODUCTION_RULES_HISTORY_JSON_URL} | ||
VITE_PROD_COMMITS_JSON_URL=#{PRODUCTION_RULES_COMMITS_JSON_URL} | ||
VITE_STAGING_HISTORY_JSON_URL=#{STAGING_RULES_HISTORY_JSON_URL} | ||
VITE_STAGING_COMMITS_JSON_URL=#{STAGING_RULES_COMMITS_JSON_URL} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
export enum WidgetConstants { | ||
SSWUrl = "https://www.ssw.com.au", | ||
RulesUrl = "https://www.ssw.com.au/rules", | ||
LatestRulesUrl = "https://www.ssw.com.au/rules/latest-rules/?size=50", | ||
ProdRulesUrl = "https://www.ssw.com.au/rules", | ||
StagingRulesUrl = "https://sarulesstagbbfslamgwndh2.z8.web.core.windows.net/rules", | ||
ProdLatestRulesUrl = "https://www.ssw.com.au/rules/latest-rules/?size=50", | ||
StagingLatestRulesUrl = "https://sarulesstagbbfslamgwndh2.z8.web.core.windows.net/rules/latest-rules/?size=50", | ||
UserRulesUrl = "https://www.ssw.com.au/rules/user/?author=", | ||
} |
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