2018-04-04 16:12:35 +02:00
|
|
|
import http from './processors/http';
|
2018-05-07 11:20:15 +02:00
|
|
|
import { ILocalUser } from '../models/user';
|
2018-04-04 16:12:35 +02:00
|
|
|
|
2018-07-26 01:11:47 +02:00
|
|
|
export function createHttpJob(data: any) {
|
2018-07-27 11:50:15 +02:00
|
|
|
return http({ data }, () => {});
|
2018-04-04 16:12:35 +02:00
|
|
|
}
|
|
|
|
|
2018-06-18 07:28:43 +02:00
|
|
|
export function deliver(user: ILocalUser, content: any, to: any) {
|
2018-11-15 21:47:29 +01:00
|
|
|
if (content == null) return;
|
|
|
|
|
2018-07-26 01:11:47 +02:00
|
|
|
createHttpJob({
|
2018-04-05 16:24:51 +02:00
|
|
|
type: 'deliver',
|
|
|
|
user,
|
|
|
|
content,
|
|
|
|
to
|
2018-07-26 01:11:47 +02:00
|
|
|
});
|
2018-04-05 16:24:51 +02:00
|
|
|
}
|