This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/server/presenters/notificationSetting.js

10 lines
187 B
JavaScript

// @flow
import { NotificationSetting } from "../models";
export default function present(setting: NotificationSetting) {
return {
id: setting.id,
event: setting.event,
};
}