mirror of
https://github.com/openSUSE/osem.git
synced 2026-02-22 02:23:06 -05:00
11 lines
221 B
Ruby
11 lines
221 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Sidebar
|
|
def sidebar
|
|
@conference = create(:conference)
|
|
assign :conference, @conference
|
|
render
|
|
expect(view).to render_template('admin/conferences/_sidebar')
|
|
end
|
|
end
|