9 lines
129 B
Ruby
9 lines
129 B
Ruby
|
class RequestsController < ApplicationController
|
||
|
|
||
|
def update
|
||
|
request.accepted = true
|
||
|
|
||
|
# Create new Chat Room
|
||
|
end
|
||
|
end
|