Skip to content

Commit

Permalink
Merge branch 'stable' into branch-v0.3
Browse files Browse the repository at this point in the history
Conflicts:
	app/models/user.rb
  • Loading branch information
daronco committed Sep 6, 2011
2 parents f955611 + 7786f6b commit 901dfad
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions app/models/user.rb
Original file line number Diff line number Diff line change
Expand Up @@ -83,16 +83,16 @@ def profile!
profile
end
end

def create_bbb_room
create_bigbluebutton_room :owner => self,
:server => BigbluebuttonServer.first,
:param => self.login,
:name => self._full_name,
:logout_url => "/feedback/webconf/"
end
def update_bbb_room

def update_bbb_room
if self.login_changed?
bigbluebutton_room[:param] = self.login
end
Expand Down Expand Up @@ -280,6 +280,7 @@ def accessible_rooms
rooms += self.spaces.map(&:bigbluebutton_room)
rooms += Space.public.map(&:bigbluebutton_room)
rooms.uniq!
rooms
end

end

0 comments on commit 901dfad

Please sign in to comment.