This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule MusicTester.FollowTopic do | |
use MusicTester.Web, :model | |
schema "follow_topics" do | |
belongs_to :user, MusicTester.User | |
belongs_to :topic, MusicTester.Topic | |
timestamps | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Compiled web/channels/room_channel.ex | |
[info] POST /api/v1/like_posts | |
[debug] Processing by MusicTester.LikePostController.create/2 | |
Parameters: %{"like_post" => "{ post_id: 15, user_id: 1}"} | |
Pipelines: [:api] | |
"{ post_id: 15, user_id: 1}" | |
[info] Sent 500 in 7ms | |
[error] #PID<0.898.0> running MusicTester.Endpoint terminated | |
Server: localhost:4000 (http) |