FrankYan93/nanotwitter

View on GitHub
api/tweets/getReplybyId.rb

Summary

Maintainability
A
0 mins
Test Coverage
get '/api/v1/replies/:reply_id' do
    theReply=Reply.where(id: params[:reply_id])
    theReply.to_json
end