aboutsummaryrefslogtreecommitdiffstats
path: root/DEVNOTES.md
diff options
context:
space:
mode:
authorAlban Peignier2018-01-10 21:34:47 +0100
committerGitHub2018-01-10 21:34:47 +0100
commitcd14af8a507eb927f5e10675c3069a820f99fb9c (patch)
treec64edd02cd025c7847e1c1e301b83f58c59f3414 /DEVNOTES.md
parent17a3d2437a4eb60ec4046137fb37d7b433dc48aa (diff)
parent5ab41aaf9978abe89faf3c11dafa8c3c372f7cfb (diff)
downloadchouette-core-cd14af8a507eb927f5e10675c3069a820f99fb9c.tar.bz2
Merge pull request #204 from af83/5413-read_only_policy_for_finalised_refs
Read only policy for referentials in suite. Refs #5413
Diffstat (limited to 'DEVNOTES.md')
-rw-r--r--DEVNOTES.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/DEVNOTES.md b/DEVNOTES.md
index 2a3915ed2..bcdd37f5e 100644
--- a/DEVNOTES.md
+++ b/DEVNOTES.md
@@ -37,7 +37,7 @@ They are overriden as follows
```ruby
def <destructive>?
- !archived? && organisation_match? && user.has_permission('<resource in plural form>.<action>')
+ !referential_read_only? && organisation_match? && user.has_permission('<resource in plural form>.<action>')
end
```