12 lines
235 B
Ruby
12 lines
235 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module SidebarGuardian
|
||
|
def can_edit_sidebar_section?(sidebar_section)
|
||
|
is_my_own?(sidebar_section)
|
||
|
end
|
||
|
|
||
|
def can_delete_sidebar_section?(sidebar_section)
|
||
|
is_my_own?(sidebar_section)
|
||
|
end
|
||
|
end
|