scinote-web/app/controllers/sample_my_modules_controller.rb

34 lines
743 B
Ruby
Raw Normal View History

2016-02-12 23:52:43 +08:00
class SampleMyModulesController < ApplicationController
2016-10-12 15:30:55 +08:00
include OrganizationsHelper
2016-02-12 23:52:43 +08:00
before_action :load_vars
def index
@number_of_samples = @my_module.number_of_samples
@samples = @my_module.first_n_samples
2016-02-12 23:52:43 +08:00
2016-10-11 22:46:30 +08:00
current_organization_switch(@my_module
.experiment
.project
.organization)
2016-02-12 23:52:43 +08:00
respond_to do |format|
format.json {
render :json => {
:html => render_to_string({
:partial => "index.html.erb"
})
}
}
end
end
private
def load_vars
@my_module = MyModule.find_by_id(params[:my_module_id])
unless @my_module
render_404
end
end
end