18F/identity-idp

View on GitHub
app/controllers/test/session_data_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
# frozen_string_literal: true

module Test
  # Controller that echoes back session info, only for testing
  class SessionDataController < ApplicationController
    def index
      render json: session.to_h
    end
  end
end