Cross Reference: validations.rb
xref
: /
dovecot
/
src
/
plugins
/
fts-lucene
/
buffer.c
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
validations.rb revision 7f12123144c64e1114c5fc62158230fa96706746
module
Ontology
::
Validations
extend
ActiveSupport
::
Concern
included
do
validates
:
iri
,
uniqueness
:
true
,
if
: :
iri_changed
?
validates
:
iri
,
format
: {
with
:
URI.regexp
(
Settings.allowed
_iri_schemes
)
}
validates
:
documentation
,
allow_blank
:
true
,
format
: {
with
:
URI.regexp
(
Settings.allowed
_iri_schemes
)
}
validates
:
basepath
,
presence
:
true
validates
:
state
,
inclusion
: {
in
:
Ontology
::
States
::
STATES
}
end
end