mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-12 15:41:01 +01:00
10 lines
218 B
JavaScript
10 lines
218 B
JavaScript
'use strict';
|
|
|
|
const social = require('../../social');
|
|
|
|
const SocketSocial = module.exports;
|
|
|
|
SocketSocial.savePostSharingNetworks = async function (socket, data) {
|
|
await social.setActivePostSharingNetworks(data);
|
|
};
|