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.



93
94
95
96
97
98
# File 'app/view_hooks/thredded/all_view_hooks.rb', line 93

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

Instance Attribute Details

#containerThredded::AllViewHooks::ViewHook (readonly)



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

def container
  @container
end

#groupThredded::AllViewHooks::ViewHook (readonly)



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

def group
  @group
end

#listThredded::AllViewHooks::ViewHook (readonly)



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

def list
  @list
end

#messageboardThredded::AllViewHooks::ViewHook (readonly)



91
92
93
# File 'app/view_hooks/thredded/all_view_hooks.rb', line 91

def messageboard
  @messageboard
end