Skip to content
Snippets Groups Projects
Commit c46b2e84 authored by Anatole ROMON's avatar Anatole ROMON
Browse files

application de la migration

parent 5d9d45bc
No related branches found
No related tags found
No related merge requests found
...@@ -6,12 +6,12 @@ exports.seed = function(knex, Promise) { ...@@ -6,12 +6,12 @@ exports.seed = function(knex, Promise) {
// Inserts seed entries // Inserts seed entries
return knex('user_join_group').insert([ return knex('user_join_group').insert([
{ id: 1, { id: 1,
recepient: 'br', recipient: 'br',
message: "C'est ici pour développer sigma ?", message: "C'est ici pour développer sigma ?",
useruid: "anatole.romon" useruid: "anatole.romon"
}, },
{ id: 2, { id: 2,
recepient: 'br', recipient: 'br',
message: "Bonjour, je cherche le binet subaisse", message: "Bonjour, je cherche le binet subaisse",
useruid: "quentin.gendre" useruid: "quentin.gendre"
} }
......
...@@ -169,8 +169,8 @@ export const createGroupIfLegal = (user, args) => { ...@@ -169,8 +169,8 @@ export const createGroupIfLegal = (user, args) => {
}); });
}; };
export const getUserJoinGroupRequests = (user, recepientUID) => { export const getUserJoinGroupRequests = (user, recipientUID) => {
return knex('user_join_group').select(/*'id', 'useruid', 'message'*/)/*.where('recepient', recepientUID)*/; return knex('user_join_group').select(/*'id', 'useruid', 'message'*/)/*.where('recipient', recipientUID)*/;
}; };
//Don't forget the argument user is the guy who makes the request, not the user we want //Don't forget the argument user is the guy who makes the request, not the user we want
......
...@@ -100,7 +100,7 @@ const resolvers = { ...@@ -100,7 +100,7 @@ const resolvers = {
}, },
user : (obj, args, context) => { user : (obj, args, context) => {
return db_utils.getUser(context.user, obj.useruid) return db_utils.getUser(context.user, obj.useruid);
/*return db_utils.getUser(context.user, "quentin.gendre"); /*return db_utils.getUser(context.user, "quentin.gendre");
if(obj.useruid === "anatole.romon"){ if(obj.useruid === "anatole.romon"){
return db_utils.getUser(context.user, "anatole.romon").then(res => { return db_utils.getUser(context.user, "anatole.romon").then(res => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment