闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
254 B

  1. # frozen_string_literal: true
  2. class Admin::DomainBlocksController < ApplicationController
  3. before_action :require_admin!
  4. layout 'admin'
  5. def index
  6. @blocks = DomainBlock.paginate(page: params[:page], per_page: 40)
  7. end
  8. def create
  9. end
  10. end