fastladder/fastladder

View on GitHub
app/controllers/export_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ExportController < ApplicationController
  before_action :login_required

  def opml
    @opml = []
    @sites = []
    render xml: @member.export('opml')
  end
end