For example,
function user(){
flow.exec(
function(){
call a;
},
function(){
call b;
}
);
}
function posts(){
flow.exec(
function(){
call a;
},
function(){
call c;
}
);
}
as per above code, How can i make a call to common functions(call a) on different models
1 Answer