Skip to content

Commit

Permalink
private -> public
Browse files Browse the repository at this point in the history
  • Loading branch information
nl32 committed Nov 6, 2024
1 parent dd1a4ba commit 439237b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/api/routers/club.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export const clubRouter = createTRPCRouter({
});
return officers;
}),
getListedOfficers: protectedProcedure
getListedOfficers: publicProcedure
.input(byIdSchema)
.query(async ({ input, ctx }) => {
const officers = await ctx.db.query.officers.findMany({
Expand Down

0 comments on commit 439237b

Please sign in to comment.