dealy14 / ComplianceFactors.Website

This repository contains all source code for the ComplianceFactors SaaS web application.
0 stars 1 forks source link

Success message #11

Closed dealy14 closed 10 years ago

dealy14 commented 11 years ago

When I successfully add a new course, the success message should read, “Successfully Added New Course” not “Successfully inserted”

ryanammons commented 10 years ago

The following is the update script to add the proper message. I cannot push the code for the associated page until the database is updated with this script. Please let me know when that is done.

INSERT INTO [ComplianceFactors].[dbo].[a_tb_ui_texts]
           ([s_ui_text_id_pk]
           ,[s_ui_text_name]
           ,[s_ui_page_name]
           ,[s_ui_text_native]
           ,[s_ui_text_us_english]
           )
     VALUES
           (NEWID(),
           'app_succ_add_course',
           'saetc-01',
           'Successfully Added New Course',
           'Successfully Added New Course'
           )
GO
ryanammons commented 10 years ago

I was finally able to get into the production database using an alternative tool. So, this script has been run and the production app is updated.

addisondarrick commented 10 years ago

Thanks for the update Ryan!