Skip to content
Merged

Dev #65

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
a888318
Done with Reporting system
May 5, 2026
79d7798
Done with all Reporting system
May 6, 2026
65ed439
Done with the ReportSytem V2.0
May 19, 2026
5b8208e
config: configured open API for autogenerate type defination
nayan458 May 19, 2026
9a3a6bc
Merge pull request #61 from CleanCode366/56-create-the-report-system
nayan458 May 19, 2026
9ddc0de
Merge branch 'config/open-api' into dev
nayan458 May 19, 2026
930cd75
this admin auth system
May 19, 2026
c4b656f
local swager setup done
nayan458 May 19, 2026
933d258
Done with the admin Oauth system
May 20, 2026
6ad8e86
done with the admin work flow
May 20, 2026
4934343
Fixed few more buges in this branch
May 20, 2026
5f65f99
Merge pull request #62 from CleanCode366/config/swagerUI
nayan458 May 20, 2026
b5b7288
Merge pull request #63 from CleanCode366/feture/admin_refoctory
nayan458 May 20, 2026
ee108d1
config: configured open API for autogenerate type defination
nayan458 May 19, 2026
5e38f24
local swager setup done
nayan458 May 19, 2026
1427790
My test commit Bavith
May 21, 2026
dc24ebd
working admin branch
May 21, 2026
faf5642
working admin backend time 11:58
May 21, 2026
32a4569
Pushing for testing in production
May 21, 2026
ada3564
Done with the admin need testing
May 22, 2026
19625a8
Changed the redirecting url's
May 22, 2026
edbe837
updated the swager api
nayan458 May 25, 2026
9a18eec
New code bro
May 25, 2026
f0d8afd
Some cookie issue resolved
May 25, 2026
8efaa20
fixed kafka producer consumer call
nayan458 May 27, 2026
2e4d20f
resolved merge conflict
May 27, 2026
0e81bb3
feat: admin dashboard and the fix for admin auth
nayan458 May 29, 2026
41a92b2
feat: admin refoctory done and is now working fine
nayan458 Jun 1, 2026
1b14f17
merge conflict resolved
nayan458 Jun 1, 2026
8601536
Added Issue Template
nayan458 May 7, 2026
a96bb13
Added new Ci
nayan458 May 7, 2026
cb6adca
Removed unnecessary files
nayan458 May 7, 2026
3d8a593
updated the docker hub image registery
nayan458 May 7, 2026
1bcf71b
Merge remote-tracking branch 'origin/main' into dev
nayan458 Jun 1, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
import org.springframework.security.access.annotation.Secured;
import org.springframework.web.method.HandlerMethod;

import io.swagger.v3.oas.annotations.enums.SecuritySchemeIn;
import io.swagger.v3.oas.annotations.enums.SecuritySchemeType;
import io.swagger.v3.oas.annotations.security.SecurityScheme;
import io.swagger.v3.oas.models.Components;
import io.swagger.v3.oas.models.OpenAPI;
import io.swagger.v3.oas.models.Operation;
import io.swagger.v3.oas.models.Components;
import io.swagger.v3.oas.models.info.Contact;
import io.swagger.v3.oas.models.info.Info;
import io.swagger.v3.oas.models.info.License;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
import com.cadac.stone_inscription.api.dto.ApiSuccessResponse;
import com.cadac.stone_inscription.api.dto.DashboardCountsResponse;
import com.cadac.stone_inscription.auth.JwtUtil;
import com.cadac.stone_inscription.api.dto.ApiErrorResponse;
import com.cadac.stone_inscription.api.dto.ApiSuccessResponse;
import com.cadac.stone_inscription.api.dto.DashboardCountsResponse;
import com.cadac.stone_inscription.exception.StoneInscriptionException;
import com.cadac.stone_inscription.post.dto.InscriptionPostDto;
import com.cadac.stone_inscription.post.service.PostService;
Expand Down
Loading