mirror of
https://github.com/github/codeql.git
synced 2026-03-28 18:28:17 +01:00
14 lines
354 B
Java
14 lines
354 B
Java
import play.mvc.Controller;
|
|
import play.mvc.Result;
|
|
import play.filters.csrf.AddCSRFToken;
|
|
import java.util.concurrent.CompletionStage;
|
|
|
|
|
|
public class PlayResource extends Controller {
|
|
|
|
@AddCSRFToken
|
|
public Result play_index(String username, String password) {
|
|
String append_token = "password" + password;
|
|
ok("Working");
|
|
}
|
|
} |