mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
6 lines
173 B
TypeScript
6 lines
173 B
TypeScript
import { User, Star } from "@server/models";
|
|
import { allow } from "./cancan";
|
|
import { isOwner } from "./utils";
|
|
|
|
allow(User, ["read", "update", "delete"], Star, isOwner);
|