aboutsummaryrefslogtreecommitdiff
path: root/juick-spring-www/src/main/java/com/juick/www/controllers/SettingsController.java
blob: eef41c38419ee262efe9e2b44a301def47ab9436 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.juick.www.controllers;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

/**
 * Created by aalexeev on 11/21/16.
 */
@Controller
public class SettingsController {

    @RequestMapping("/settings")
    public String showSettings() {
        return "index";
    }
}