Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
Admin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
osuny
Admin
Commits
5aebeecf
Commit
5aebeecf
authored
2 years ago
by
Arnaud Levy
Browse files
Options
Downloads
Patches
Plain Diff
fix
parent
a8b8d3d9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/controllers/admin/research/publications_controller.rb
+2
-2
2 additions, 2 deletions
app/controllers/admin/research/publications_controller.rb
app/controllers/admin/research/researchers_controller.rb
+3
-3
3 additions, 3 deletions
app/controllers/admin/research/researchers_controller.rb
with
5 additions
and
5 deletions
app/controllers/admin/research/publications_controller.rb
+
2
−
2
View file @
5aebeecf
class
Admin::Research::PublicationsController
<
Admin
::
Research
::
ApplicationController
before_action
:load
,
except: :index
before_action
:load
_publication
,
except: :index
def
index
@publications
=
Research
::
Publication
.
ordered
.
page
(
params
[
:page
])
...
...
@@ -17,7 +17,7 @@ class Admin::Research::PublicationsController < Admin::Research::ApplicationCont
protected
def
load
def
load
_publication
@publication
=
Research
::
Publication
.
find
params
[
:id
]
end
...
...
This diff is collapsed.
Click to expand it.
app/controllers/admin/research/researchers_controller.rb
+
3
−
3
View file @
5aebeecf
class
Admin::Research::ResearchersController
<
Admin
::
Research
::
ApplicationController
before_action
:load
,
except: :index
before_action
:load
_researcher
,
except: :index
has_scope
:for_search_term
...
...
@@ -14,6 +14,7 @@ class Admin::Research::ResearchersController < Admin::Research::ApplicationContr
end
def
show
@papers
=
@researcher
.
research_journal_papers
.
ordered
.
page
(
params
[
:page
])
@possible_hal_authors
=
@researcher
.
possible_hal_authors
unless
@researcher
.
hal_identity?
@papers
=
@researcher
.
research_journal_papers
.
ordered
.
page
(
params
[
:page
])
breadcrumb
...
...
@@ -34,13 +35,12 @@ class Admin::Research::ResearchersController < Admin::Research::ApplicationContr
protected
def
load
def
load
_researcher
@researcher
=
current_university
.
people
.
for_language_id
(
current_university
.
default_language_id
)
.
researchers
.
accessible_by
(
current_ability
)
.
find
(
params
[
:id
])
@papers
=
@researcher
.
research_journal_papers
.
ordered
.
page
(
params
[
:page
])
end
def
breadcrumb
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment