fixed journal update method
This commit is contained in:
		
							parent
							
								
									8ebe9abdfe
								
							
						
					
					
						commit
						55dbfd8c4e
					
				|  | @ -54,13 +54,12 @@ class Desktop::JournalPagesController < ApplicationController | |||
|   def update | ||||
|     params[:writing_journal][:update_user_id] = current_user.id | ||||
|     @writing_journal= WritingJournal.find(params[:id]) | ||||
|     respond_to do |format| | ||||
|       if @writing_journal.update_attributes(params[:writing_journal]) | ||||
|         render json: {success: true, msg: "Paper successfully saved!"}.to_json | ||||
|       else | ||||
|         error_msg = @writing_journal.errors.full_messages.join("<br />") | ||||
|         render json: {success: false, msg: error_msg}.to_json | ||||
|       end | ||||
| 
 | ||||
|     if @writing_journal.update_attributes(params[:writing_journal]) | ||||
|       render json: {success: true, msg: "Paper successfully saved!"}.to_json | ||||
|     else | ||||
|       error_msg = @writing_journal.errors.full_messages.join("<br />") | ||||
|       render json: {success: false, msg: error_msg}.to_json | ||||
|     end | ||||
|   end | ||||
| 
 | ||||
|  |  | |||
|  | @ -16,7 +16,7 @@ | |||
|             <li><a href="<%= desktop_journal_pages_path %>" callback-method="list" load="true" class="hh2 w2 hp thmc1 thmtxt xx" onclick='return false;'>List</a></li> | ||||
|             <li><a href="<%= new_desktop_journal_page_path %>" custom-load="addpaper" callback-method="addpaper" custom-load="addpaper" class="admtxt hh2 w2 hp xx" onclick='return false;'>Add/Edit</a></li> | ||||
|             <li><a href="" class="admtxt hh2 w2 hp" onclick='return false;'>Journals</a></li> | ||||
|             <li><a href="<%= new_desktop_co_author_path %>" class="admtxt hh2 w2 hp"  callback-method="coauthor" onclick='return false;'>Co-Authors</a></li> | ||||
|             <li><a href="<%= new_desktop_co_author_path %>" class="admtxt hh2 w2 hp"  callback-method="coauthor" custom-load="coauthor" onclick='return false;'>Co-Authors</a></li> | ||||
|             <li><a href="" class="admtxt hh2 w2 hp" onclick='return false;'>Tags & Keywords</a></li> | ||||
|             <li><a href="" class="admtxt hh2 w2 hp" onclick='return false;'>Analysis</a></li> | ||||
|             <li><a href="" class="admtxt hh2 w2 hp" onclick='return false;'>Import</a></li> | ||||
|  |  | |||
|  | @ -23,4 +23,4 @@ | |||
|  <p>Unhappy? <%#= link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete %>.</p> | ||||
| 
 | ||||
| <%#= link_to "Back", :back %> | ||||
|  --> | ||||
|  --> | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue