11 lines
284 B
Ruby
11 lines
284 B
Ruby
class PlainpageController < ApplicationController
|
|
|
|
def index
|
|
flash[:success ] = "Success Flash Message: Welcome to GentellelaOnRails"
|
|
#other alternatives are
|
|
# flash[:warn ] = "Israel don't quite like warnings"
|
|
#flash[:danger ] = "Naomi let the dog out!"
|
|
end
|
|
|
|
end
|