Skip to content

Instantly share code, notes, and snippets.

@tslim
Last active June 6, 2020 07:38
Show Gist options
  • Save tslim/03b448215108e2f1bd06f1d9153e48fa to your computer and use it in GitHub Desktop.
Save tslim/03b448215108e2f1bd06f1d9153e48fa to your computer and use it in GitHub Desktop.
def handle_action(params, _uri, socket) do
{:ok, apply_action(socket, socket.assigns.live_action, params)}
end
defp apply_action(socket, :index, _params) do
assign(socket, :page_title, "Index Page")
end
defp apply_action(socket, :show, _params) do
assign(socket, :page_title, "Show Page")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment