Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rmgraham committed Feb 18, 2021
1 parent 9225e0c commit 65b3aef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/apollo/models/user.default.schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const UserDefaultSchema = new mongoose.Schema({
strict:'throw',
});

UserDefaultSchema.statics.getKubeOwnerName = async(context)=>{
UserDefaultSchema.statics.getKubeOwnerName = async(context)=>{ // eslint-disable-line no-unused-vars
return null;
};

Expand Down
2 changes: 1 addition & 1 deletion app/apollo/models/user.local.schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ UserLocalSchema.statics.createToken = async (user, secret, expiresIn) => {
});
};

UserLocalSchema.statics.getKubeOwnerName = async(context)=>{
UserLocalSchema.statics.getKubeOwnerName = async(context)=>{ // eslint-disable-line no-unused-vars
return null;
};

Expand Down
2 changes: 1 addition & 1 deletion app/apollo/models/user.passport.local.schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ UserPassportLocalSchema.statics.createToken = async (
});
};

UserPassportLocalSchema.statics.getKubeOwnerName = async(context)=>{
UserPassportLocalSchema.statics.getKubeOwnerName = async(context)=>{ // eslint-disable-line no-unused-vars
return null;
};

Expand Down

0 comments on commit 65b3aef

Please sign in to comment.