Skip to content

Commit

Permalink
remove Timer along with its storage and machinery
Browse files Browse the repository at this point in the history
  • Loading branch information
barneyb committed May 19, 2024
1 parent b9e2834 commit a41b3e7
Show file tree
Hide file tree
Showing 12 changed files with 4 additions and 633 deletions.
153 changes: 0 additions & 153 deletions src/main/java/com/brennaswitzer/cookbook/domain/Timer.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ public class Mutation implements GraphQLMutationResolver {
@Autowired
public LibraryMutation library;

@Autowired
public TimerMutation timer;

@Autowired
public FavoriteMutation favorite;

Expand Down
3 changes: 0 additions & 3 deletions src/main/java/com/brennaswitzer/cookbook/graphql/Query.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ public class Query implements GraphQLQueryResolver {
@Autowired
private UserPrincipalAccess userPrincipalAccess;

@Autowired
public TimerQuery timer;

@Autowired
public FavoriteQuery favorite;

Expand Down

This file was deleted.

23 changes: 0 additions & 23 deletions src/main/java/com/brennaswitzer/cookbook/graphql/TimerQuery.java

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 4 additions & 0 deletions src/main/resources/db/changelog/gobrennas-2024.sql
Original file line number Diff line number Diff line change
Expand Up @@ -422,3 +422,7 @@ where r.id = h.recipe_id;
alter table planned_recipe_history
alter owner_id set not null,
alter done_at set not null;

--changeset barneyb:remove-timers
drop table timer_grants;
drop table timer;
Loading

0 comments on commit a41b3e7

Please sign in to comment.