Skip to content
Snippets Groups Projects
Commit 5aebeecf authored by Arnaud Levy's avatar Arnaud Levy
Browse files

fix

parent a8b8d3d9
No related branches found
No related tags found
No related merge requests found
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
......
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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment