mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-17 05:34:04 +00:00
9 lines
224 B
Ruby
9 lines
224 B
Ruby
|
|
module Sidebar
|
||
|
|
def sidebar
|
||
|
|
@conference = create(:conference)
|
||
|
|
assign :conference, @conference
|
||
|
|
assign :cfp, CallForPapers.new
|
||
|
|
render
|
||
|
|
expect(view).to render_template('admin/conference/_sidebar')
|
||
|
|
end
|
||
|
|
end
|