Files
outline/server/policies/notification.ts
2024-03-31 17:28:35 -07:00

6 lines
179 B
TypeScript

import { Notification, User } from "@server/models";
import { allow } from "./cancan";
import { isOwner } from "./utils";
allow(User, ["read", "update"], Notification, isOwner);