10 lines
		
	
	
		
			197 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			197 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
defmodule ConfientWeb.ErrorController do
 | 
						|
  use ConfientWeb, :controller
 | 
						|
 | 
						|
  def notfound(conn, _params) do
 | 
						|
    conn
 | 
						|
    |> put_flash(:error, "Fichier inexistant")
 | 
						|
    |> redirect(to: "/")
 | 
						|
  end
 | 
						|
end
 |