Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. = simple_form_for current_user, url: certificate_webex_employee_path(current_user), remote: true, html: { class: 'edit-profile' }, defaults: { label: false } do |f|
  2. .form-body
  3. .form-group.row
  4. .col-md-12{style: 'color: black'}
  5. = f.input_field :webex_certification_code, class: "form-control"
  6.  
  7. resources :users, controller: 'employees', path: 'employees', as: 'employees', only: [:index, :edit, :update, :show, :destroy] do
  8. get :performance, on: :collection
  9. member do
  10. patch :certificate_webex
  11. end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement