RegistrationsController -> AppRegistrationsController

This commit is contained in:
Shadowfacts 2024-04-07 14:02:20 -04:00
parent 56b93d42e5
commit ba4e1d7abf
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
defmodule TuskerPushWeb.RegistrationsController do
defmodule TuskerPushWeb.AppRegistrationsController do
alias TuskerPush.Registration
alias Ecto.Changeset
use TuskerPushWeb, :controller

View File

@ -9,7 +9,7 @@ defmodule TuskerPushWeb.Router do
pipe_through :api
scope "/v1" do
resources "/registrations", RegistrationsController, only: [:create, :update, :delete]
resources "/registrations", AppRegistrationsController, only: [:create, :update, :delete]
end
end