Skip to content

Commit

Permalink
fix: disable session check for billboard
Browse files Browse the repository at this point in the history
  • Loading branch information
hai-ko committed Nov 8, 2023
1 parent 3726417 commit d217f5c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy-billboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
echo "RPC=${{ secrets.STAGING_RPC }}" >> ./.env
echo "BILLBOARD_PRIVATE_KEY=${{ secrets.BILLBOARD_PRIVATE_KEY}}" >> ./.env
echo "interceptor=${{ secrets.INTERCEPTOR}}" >> ./.env
echo "DISABLE_SESSION_CHECK='true'" >> ./.env
envsubst '${SSL_CERTIFICATE_BASE_LOC} ${TLS_CERTIFICATE_LOCATION} ${TARGET_HOST}' < ./docker/nginx.conf > ./nginx.conf
cat ./.env
- name: Build docker image
Expand Down
1 change: 1 addition & 0 deletions packages/backend/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import Profile from './profile';
import RpcProxy from './rpc/rpc-proxy';
import Storage from './storage';
import { logInfo } from 'dm3-lib-shared';
import 'dotenv/config';

import {
errorHandler,
Expand Down
10 changes: 10 additions & 0 deletions packages/backend/src/profile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,14 @@ export default () => {
method: 'POST',
url: req.url,
ensName,
disableSessionCheck:
'value ' + process.env.DISABLE_SESSION_CHECK,
disableSessionCheckBool:
process.env.DISABLE_SESSION_CHECK === 'true',
});

console.log('process: ', process.env);

Check failure on line 58 in packages/backend/src/profile.ts

View workflow job for this annotation

GitHub Actions / code-quality

Unexpected console statement

const data = await submitUserProfile(
req.app.locals.web3Provider,
req.app.locals.db.getSession,
Expand All @@ -69,6 +75,10 @@ export default () => {

res.json(data);
} catch (e) {
global.logger.warn({
message: 'POST profile',
error: JSON.stringify(e),
});
res.status(400).send({
message: `Couldn't store profile`,
error: JSON.stringify(e),
Expand Down

0 comments on commit d217f5c

Please sign in to comment.