-
Gabriel Copat authored
Page also starts with pack1 selected by default
Gabriel Copat authoredPage also starts with pack1 selected by default
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
RewardsController.java 609 B
package team5.smartTowns.rewards;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.servlet.ModelAndView;
import team5.smartTowns.users.User;
import team5.smartTowns.users.UserRepository;
import java.util.List;
import java.util.Map;
@Controller
public class RewardsController {
@Autowired
RewardsRepository rewardsRepository;
@Autowired
UserRepository userRepository;
}