push_notify.js 455 B

1234567891011121314
  1. "use strict";
  2. var log = require('../util/log');
  3. var mysql_im = require("../db/mysql_im");
  4. function savePushNotify(to_uid, type, title, content, data, has_pushed, handler) {
  5. mysql_im.execQuery({
  6. "sql": "INSERT INTO push_notify (to_uid,type,title,content,data,has_pushed) VALUES (?,?,?,?,?,?)",
  7. "args": [to_uid, type, title, content, data, has_pushed],
  8. "handler": handler
  9. });
  10. }
  11. exports.savePushNotify = savePushNotify;