Skip to content

Commit

Permalink
Update airtable base usage in utils
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwofford committed Oct 7, 2019
1 parent 9f90bd9 commit 8a3df4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils.js
Expand Up @@ -183,7 +183,7 @@ export const getInfoForUser = user =>

export const recordMeeting = (club, meeting, cb) => {
console.log(club, meeting)
base('History').create(
bases.operations('History').create(
{
Type: ['Meeting'],
Club: [club.id],
Expand Down Expand Up @@ -242,7 +242,7 @@ export const userRecord = user =>
// if it doesn't exist, create one...
getSlackUser(user)
.then(slackUser =>
base('Orpheus').create(
bases.operations('Orpheus').create(
{
Username: '@' + slackUser.name,
User: user,
Expand Down

0 comments on commit 8a3df4f

Please sign in to comment.