Skip to content
Snippets Groups Projects

Internationalization.

Merged BEAUVAIS ANTOINE requested to merge develop into master
Compare and
10 files
+ 97
10
Preferences
Compare changes
Files
10
/*
* CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-B
* https://cecill.info/licences/Licence_CeCILL-B_V1-fr.html
*/
package fr.unistra.sil.erp.back.controller.web;
import static fr.unistra.sil.erp.back.WebMvcConfig.MAPPING_LOGIN;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
/**
* Controller for the Web login interface.
*
* This controller handles the connection process of the user
* upon his arrival.
*
* @author BEAUVAIS ANTOINE
*/
@Controller
public class LoginController {
/**
* Logic for handling login.
*
* TODO: Actual implementation.
*/
@GetMapping(MAPPING_LOGIN)
public void login()
{
}
}