Skip to content

Commit

Permalink
roles table is now a view; no longer writable
Browse files Browse the repository at this point in the history
  • Loading branch information
brontolosone committed Oct 2, 2024
1 parent ef547c1 commit ddf623c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/model/frames.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ class PublicLink extends Frame.define(

const Role = Frame.define(
table('roles'),
'id', readable, 'name', readable, writable,
'id', readable, 'name', readable,
'system', readable, 'createdAt', readable,
'updatedAt', readable, 'verbs', readable, writable
'updatedAt', readable, 'verbs', readable
);

class Session extends Frame.define(
Expand Down

0 comments on commit ddf623c

Please sign in to comment.