Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
anis
anis-server
Commits
4a7d6463
Commit
4a7d6463
authored
Dec 02, 2020
by
François Agneray
Browse files
Re-generate doctrine proxies files
parent
72b7d701
Pipeline
#3714
failed with stages
in 34 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
4a7d6463
...
@@ -6,7 +6,7 @@ stages:
...
@@ -6,7 +6,7 @@ stages:
-
deploy
-
deploy
variables
:
variables
:
VERSION
:
"
3.
3
"
VERSION
:
"
3.
5
"
SONARQUBE_URL
:
https://sonarqube.lam.fr
SONARQUBE_URL
:
https://sonarqube.lam.fr
CONTAINER_IMAGE
:
portus.lam.fr/anis/anis-server
CONTAINER_IMAGE
:
portus.lam.fr/anis/anis-server
...
...
CHANGELOG.md
View file @
4a7d6463
...
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
...
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on
[
Keep a Changelog
](
https://keepachangelog.com/en/1.0.0/
)
,
The format is based on
[
Keep a Changelog
](
https://keepachangelog.com/en/1.0.0/
)
,
and this project adheres to
[
Semantic Versioning
](
https://semver.org/spec/v2.0.0.html
)
.
and this project adheres to
[
Semantic Versioning
](
https://semver.org/spec/v2.0.0.html
)
.
## [3.5.0]
### Added
-
#7: Protected routes with SSO JWT
-
#58: Add datasets privileges
## [3.4.0]
## [3.4.0]
### Added
### Added
-
#56: Added config attribute to Instance entity
-
#56: Added config attribute to Instance entity
...
...
doctrine-proxy/__CG__AppEntityDatasetFamily.php
View file @
4a7d6463
...
@@ -232,6 +232,17 @@ class DatasetFamily extends \App\Entity\DatasetFamily implements \Doctrine\ORM\P
...
@@ -232,6 +232,17 @@ class DatasetFamily extends \App\Entity\DatasetFamily implements \Doctrine\ORM\P
return
parent
::
setDisplay
(
$display
);
return
parent
::
setDisplay
(
$display
);
}
}
/**
* {@inheritDoc}
*/
public
function
getInstance
()
{
$this
->
__initializer__
&&
$this
->
__initializer__
->
__invoke
(
$this
,
'getInstance'
,
[]);
return
parent
::
getInstance
();
}
/**
/**
* {@inheritDoc}
* {@inheritDoc}
*/
*/
...
...
doctrine-proxy/__CG__AppEntityGroup.php
View file @
4a7d6463
...
@@ -64,10 +64,10 @@ class Group extends \App\Entity\Group implements \Doctrine\ORM\Proxy\Proxy
...
@@ -64,10 +64,10 @@ class Group extends \App\Entity\Group implements \Doctrine\ORM\Proxy\Proxy
public
function
__sleep
()
public
function
__sleep
()
{
{
if
(
$this
->
__isInitialized__
)
{
if
(
$this
->
__isInitialized__
)
{
return
[
'__isInitialized__'
,
'id'
,
'
label
'
,
'datasets'
];
return
[
'__isInitialized__'
,
'id'
,
'
role'
,
'instance
'
,
'datasets'
];
}
}
return
[
'__isInitialized__'
,
'id'
,
'
label
'
,
'datasets'
];
return
[
'__isInitialized__'
,
'id'
,
'
role'
,
'instance
'
,
'datasets'
];
}
}
/**
/**
...
@@ -191,23 +191,34 @@ class Group extends \App\Entity\Group implements \Doctrine\ORM\Proxy\Proxy
...
@@ -191,23 +191,34 @@ class Group extends \App\Entity\Group implements \Doctrine\ORM\Proxy\Proxy
/**
/**
* {@inheritDoc}
* {@inheritDoc}
*/
*/
public
function
get
Label
()
public
function
get
Role
()
{
{
$this
->
__initializer__
&&
$this
->
__initializer__
->
__invoke
(
$this
,
'get
Label
'
,
[]);
$this
->
__initializer__
&&
$this
->
__initializer__
->
__invoke
(
$this
,
'get
Role
'
,
[]);
return
parent
::
get
Label
();
return
parent
::
get
Role
();
}
}
/**
/**
* {@inheritDoc}
* {@inheritDoc}
*/
*/
public
function
set
Label
(
$label
)
public
function
set
Role
(
$role
)
{
{
$this
->
__initializer__
&&
$this
->
__initializer__
->
__invoke
(
$this
,
'set
Label'
,
[
$label
]);
$this
->
__initializer__
&&
$this
->
__initializer__
->
__invoke
(
$this
,
'set
Role'
,
[
$role
]);
return
parent
::
setLabel
(
$label
);
return
parent
::
setRole
(
$role
);
}
/**
* {@inheritDoc}
*/
public
function
getInstance
()
{
$this
->
__initializer__
&&
$this
->
__initializer__
->
__invoke
(
$this
,
'getInstance'
,
[]);
return
parent
::
getInstance
();
}
}
/**
/**
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment