Class: Thredded::AllViewHooks::MessageboardsIndex

Inherits:
Object
  • Object
show all
Defined in:
app/view_hooks/thredded/all_view_hooks.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeMessageboardsIndex

Returns a new instance of MessageboardsIndex.



87
88
89
90
91
92
# File 'app/view_hooks/thredded/all_view_hooks.rb', line 87

def initialize
  @container = ViewHook.new
  @list = ViewHook.new
  @group = ViewHook.new
  @messageboard = ViewHook.new
end

Instance Attribute Details

#containerThredded::AllViewHooks::ViewHook (readonly)



79
80
81
# File 'app/view_hooks/thredded/all_view_hooks.rb', line 79

def container
  @container
end

#groupThredded::AllViewHooks::ViewHook (readonly)



83
84
85
# File 'app/view_hooks/thredded/all_view_hooks.rb', line 83

def group
  @group
end

#listThredded::AllViewHooks::ViewHook (readonly)



81
82
83
# File 'app/view_hooks/thredded/all_view_hooks.rb', line 81

def list
  @list
end

#messageboardThredded::AllViewHooks::ViewHook (readonly)



85
86
87
# File 'app/view_hooks/thredded/all_view_hooks.rb', line 85

def messageboard
  @messageboard
end