Current section
Files
Jump to
Current section
Files
lib/logout.ex
defmodule SsoLogin.Logout do
@moduledoc """
注销当前登录用户
"""
import Plug.Conn
def init(opts) do
opts
end
def call(conn, _opts) do
conn
|> SsoLogin.Helper.logout()
|> put_resp_header("location", "/")
|> send_resp(302, "Redirect!")
end
end