mirror of
https://github.com/outline/outline.git
synced 2026-03-03 01:30:06 -06:00
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,
|
|
};
|
|
}
|