fleencorp / fleen-feen

Fleen Feen connects you with the world
GNU General Public License v3.0
0 stars 1 forks source link

Add Country endpoints for CountryService #31

Closed aalamu closed 2 months ago

aalamu commented 2 months ago

Description

Add controller class CountryController in

com.fleencorp.feen.controller package and add route methods like

  @GetMapping(value = "/data-for-sign-up")
  @Cacheable(value = "data-required-to-sign-up")
  public DataForSignUpResponse getDataForSignUp() {
    return authenticationService.getDataForSignUp();
  }

for the following CountryService methods including

The base path for the controller should be /api/country

Note

For example /count-all is simple and short

Note