mirror of
https://github.com/outline/outline.git
synced 2026-05-07 02:20:56 -05:00
b20a341f0c
closes #2798
9 lines
183 B
TypeScript
9 lines
183 B
TypeScript
import { NotificationSetting } from "@server/models";
|
|
|
|
export default function present(setting: NotificationSetting) {
|
|
return {
|
|
id: setting.id,
|
|
event: setting.event,
|
|
};
|
|
}
|