diaspora/app/controllers/blocks_controller.rb
Dan Hansen 16e76886d9 wip
2011-11-03 12:31:24 -07:00

9 lines
No EOL
220 B
Ruby

class BlocksController < ApplicationController
before_filter :authenticate_user!
def create
current_user.blocks.create(params[:block])
redirect_to :back, :notice => "that person sucked anyways..."
end
end