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
<svg | |
version="1.1" | |
id="svg2" | |
width="75" | |
height="75" | |
viewBox="0 0 800 800" | |
sodipodi:docname="cloudradio-icon-grey-600px.ai" | |
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
xmlns="http://www.w3.org/2000/svg" |
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
def require_admin_user(conn, _opts) do | |
current_user = conn.assigns[:current_user] | |
if current_user.admin? do | |
conn | |
else | |
conn | |
|> put_flash(:error, "You must be an admin to access this page.") | |
|> redirect(to: Routes.admin_session_path(conn, :new)) | |
|> halt() |
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
# In this file, we load production configuration and secrets | |
# from environment variables. You can also hardcode secrets, | |
# although such is generally not recommended and you have to | |
# remember to add this file to your .gitignore. | |
import Config | |
config :studio, email_validator_api_key: "WEu0KUlOGv9vSW8M0JoGo3PC8dsVgTEC" | |
Add import_config "#{config_env()}.secrets.exs" to dev |
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 Studio.Accounts.EmailValidator do | |
@moduledoc """ | |
Reoon Email Verifier API client. The score is the probability that the email is safe to send. | |
""" | |
@api_base_url "https://emailverifier.reoon.com/api/v1/verify" | |
@minimum_score 70 | |
# Public function to check if an email is safe to send, with an optional mode parameter | |
def validate(email, mode \\ "power") do |