Skip to content

Commit

Permalink
Merge pull request #38 from Savage-Aim/proxy-release
Browse files Browse the repository at this point in the history
Proxy release
  • Loading branch information
freyamade authored Aug 5, 2022
2 parents e8b9278 + 0f1f9d3 commit be66368
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion backend/backend/settings_live.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def sampler(context):
# If you wish to associate users to errors (assuming you are using
# django.contrib.auth) you may enable sending PII data.
send_default_pii=True,
release='savageaim@20220613',
release='savageaim@20220805',
)

# Channels
Expand Down
2 changes: 1 addition & 1 deletion frontend/.env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VUE_APP_VERSION="20220613"
VUE_APP_VERSION="20220805"
2 changes: 1 addition & 1 deletion frontend/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Sentry.init({
Vue,
dsn: 'https://[email protected]/6180221',
logErrors: true,
release: 'savageaim@20220613',
release: 'savageaim@20220805',
})

new Vue({
Expand Down
5 changes: 4 additions & 1 deletion frontend/src/views/team/join.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<div class="column">
<div class="card">
<div class="card-header">
<div class="card-header-title">Select your Character and BIS List</div>
<div class="card-header-title">Select a Character and BIS List</div>
</div>
<div class="card-content">
<TeamMemberForm ref="form" :bis-list-id-errors="errors.bis_list_id" :character-id-errors="errors.character_id" />
Expand All @@ -50,6 +50,9 @@
<p>These are Characters that are currently managed by the Team.</p>
<p>If any of these are yours, just click them to attempt to claim and verify them as such!</p>
<hr />
<div class="box" v-if="teamProxies.length === 0">
<p>This team has no Proxy Characters, please sign up with one of your own!</p>
</div>
<a class="box" v-for="proxy in teamProxies" :key="proxy.id" @click="() => { claim(proxy.character) }">
<CharacterBio :character="proxy.character" :displayUnverified="false" />
</a>
Expand Down

0 comments on commit be66368

Please sign in to comment.