Class: Thredded::AllViewHooks::MessageboardGroupShow

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

#initializeMessageboardGroupShow

Returns a new instance of MessageboardGroupShow.



111
112
113
114
115
116
# File 'app/view_hooks/thredded/all_view_hooks.rb', line 111

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

Instance Attribute Details

#containerThredded::AllViewHooks::ViewHook (readonly)



103
104
105
# File 'app/view_hooks/thredded/all_view_hooks.rb', line 103

def container
  @container
end

#groupThredded::AllViewHooks::ViewHook (readonly)



107
108
109
# File 'app/view_hooks/thredded/all_view_hooks.rb', line 107

def group
  @group
end

#listThredded::AllViewHooks::ViewHook (readonly)



105
106
107
# File 'app/view_hooks/thredded/all_view_hooks.rb', line 105

def list
  @list
end

#messageboardThredded::AllViewHooks::ViewHook (readonly)



109
110
111
# File 'app/view_hooks/thredded/all_view_hooks.rb', line 109

def messageboard
  @messageboard
end