Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions config/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@ module.exports = {
CHALLENGE_PHASES_API_URL: process.env.CHALLENGE_PHASES_API_URL || 'https://api.topcoder-dev.com/v5/challenge-phases',

DYNAMODB: {
// AWS_ACCESS_KEY_ID: process.env.AWS_FAKE_ID,
// AWS_SECRET_ACCESS_KEY: process.env.AWS_FAKE_KEY,
AWS_ACCESS_KEY_ID: process.env.AWS_ACCESS_KEY_ID,
AWS_SECRET_ACCESS_KEY: process.env.AWS_SECRET_ACCESS_KEY,
AWS_REGION: process.env.AWS_REGION || 'us-east-1',
IS_LOCAL_DB: process.env.IS_LOCAL_DB ? process.env.IS_LOCAL_DB === 'true' : true,
DYNAMODB_URL: process.env.DYNAMODB_URL || 'http://localhost:8000',
DYNAMODB_URL: process.env.DYNAMODB_URL || 'http://localhost:7777',
URL: process.env.DYNAMODB_URL || 'http://localhost:7777',
AWS_READ_UNITS: process.env.AWS_READ_UNITS || 4,
AWS_WRITE_UNITS: process.env.AWS_WRITE_UNITS || 2,
TIMEOUT: process.env.DYNAMODB_TIMEOUT || 10000
Expand Down
8 changes: 8 additions & 0 deletions docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ paths:
format: UUID
in: query
required: true
- name: memberId
type: integer
description: The member id
in: query
- name: memberHandle
type: string
description: The member handle
in: query
- name: roleId
type: string
description: role id to filter on
Expand Down
Loading