Skip to content

Commit

Permalink
Require email in memberUpdate (for Champaign)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincemtnz committed Jan 12, 2018
1 parent cdf2a1b commit e18fac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion members-service/request-schemas.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const SHOW_MEMBER_SCHEMA = {

export const UPDATE_MEMBER_SCHEMA = {
type: 'object',
required: ['id'],
required: ['id', 'email'],
properties: {
id: { type: 'string', pattern: '^[0-9]+$' },
email: { type: 'string', format: 'email' },
Expand Down

0 comments on commit e18fac0

Please sign in to comment.