Method: Vedeu::Groups::Group#attributes

Defined in:
lib/vedeu/groups/group.rb

#attributesHash<Symbol => void>

Returns the attributes of the group.

Returns:

  • (Hash<Symbol => void>)


59
60
61
62
63
64
65
66
# File 'lib/vedeu/groups/group.rb', line 59

def attributes
  {
    name:       name,
    members:    members,
    repository: repository,
    visible:    visible,
  }
end