diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index 24c1a02..8203cad 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -12,7 +12,7 @@ jobs: qa: runs-on: ubuntu-latest container: - image: crystallang/crystal:1.11.0 + image: crystallang/crystal:1.12.0 steps: - uses: actions/checkout@v1 - name: Install shards diff --git a/.github/workflows/specs.yml b/.github/workflows/specs.yml index a5bc0e7..1a244fc 100644 --- a/.github/workflows/specs.yml +++ b/.github/workflows/specs.yml @@ -15,9 +15,9 @@ jobs: fail-fast: false matrix: crystal: [ - '1.9.2', '1.10.0', '1.11.0', + '1.12.0', 'nightly', ] container: diff --git a/src/marten_turbo/handlers/record_delete.cr b/src/marten_turbo/handlers/record_delete.cr index 66f5854..b6a0410 100644 --- a/src/marten_turbo/handlers/record_delete.cr +++ b/src/marten_turbo/handlers/record_delete.cr @@ -31,6 +31,10 @@ module MartenTurbo Marten::HTTP::Response::Found.new(success_url) end end + + def delete + post + end end end end