Packages

Cookie based dev feature toggles for Plug-based web apps

Current section

Files

Jump to
laboratory lib laboratory.ex
Raw

lib/laboratory.ex

defmodule Laboratory do
def enabled?(conn, id) do
conn = Plug.Conn.fetch_cookies(conn)
conn.cookies[to_string(id)] == "true"
end
end