config/routes.rb in tramway-auth-1.1.0.1 vs config/routes.rb in tramway-auth-1.1.0.2
- old
+ new
@@ -1,5 +1,7 @@
+# frozen_string_literal: true
+
Tramway::Auth::Engine.routes.draw do
scope module: :web do
- resource :session, only: [ :new, :create, :destroy ]
+ resource :session, only: %i[new create destroy]
end
end