Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jsonapi_extras
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
jsonapi_extras
Merge requests
!41
Draft: Default field enhancer for each field type
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: Default field enhancer for each field type
issue/jsonapi_extras-3025283:field-type-enhancers
into
8.x-3.x
Overview
0
Commits
8
Pipelines
8
Changes
12
Open
afinnarn
requested to merge
issue/jsonapi_extras-3025283:field-type-enhancers
into
8.x-3.x
1 year ago
Overview
0
Commits
8
Pipelines
8
Changes
12
Expand
0
0
Merge request reports
Compare
8.x-3.x
version 7
f4c8fc6e
4 months ago
version 6
0b5dc938
4 months ago
version 5
916edc77
1 year ago
version 4
0eb5b3e3
1 year ago
version 3
5e03fd25
1 year ago
version 2
055d4274
1 year ago
version 1
ab4833b1
1 year ago
8.x-3.x (HEAD)
and
latest version
latest version
328a62a5
8 commits,
4 months ago
version 7
f4c8fc6e
7 commits,
4 months ago
version 6
0b5dc938
6 commits,
4 months ago
version 5
916edc77
5 commits,
1 year ago
version 4
0eb5b3e3
4 commits,
1 year ago
version 3
5e03fd25
3 commits,
1 year ago
version 2
055d4274
2 commits,
1 year ago
version 1
ab4833b1
1 commit,
1 year ago
12 files
+
363
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
config/schema/jsonapi_extras.schema.yml
+
40
−
0
Options
@@ -79,3 +79,43 @@ jsonapi_extras.settings:
type
:
boolean
label
:
'
Validate
configuration
integrity'
description
:
"
Enable
a
configuration
validation
step
for
the
fields
in
your
resources.
This
will
ensure
that
new
(and
updated)
fields
also
contain
configuration
for
the
corresponding
resources."
jsonapi_extras.jsonapi_field_type_config
:
type
:
config_entity
label
:
'
JSON:API
Field
Type
Config'
mapping
:
disabled
:
type
:
boolean
label
:
'
Disabled'
description
:
'
Globally
disable
field
type
enhancers.'
resourceFields
:
type
:
sequence
label
:
'
Field
Types'
sequence
:
type
:
jsonapi_extras.resource_field_type
jsonapi_extras.resource_field_type
:
type
:
mapping
mapping
:
disabled
:
type
:
boolean
label
:
'
Disabled'
description
:
'
Is
the
field
type
disabled?'
fieldName
:
type
:
string
label
:
'
Entity
field
name'
includedFieldTypes
:
type
:
sequence
label
:
'
Included
field
types'
sequence
:
type
:
string
enhancer
:
type
:
mapping
label
:
'
Enhancer
plugin'
description
:
'
A
plugin
that
carries
additional
(de)normalization
tasks.'
mapping
:
id
:
type
:
string
description
:
'
The
enhancer
plugin
ID'
settings
:
type
:
jsonapi_extras.enhancer_plugin.[%parent.id]
Loading