2014-08-17 20:56:58 +08:00
|
|
|
class ContestNotificationController < ApplicationController
|
2014-09-16 08:56:45 +08:00
|
|
|
layout 'contest_base'
|
2014-07-23 09:24:26 +08:00
|
|
|
def show
|
2014-08-17 20:56:58 +08:00
|
|
|
@notification = ContestNotification.find(params[:id])
|
2014-07-23 09:24:26 +08:00
|
|
|
end
|
2014-08-17 20:56:58 +08:00
|
|
|
end
|