Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. class ConfigurationController < ApiController
  2. def index
  3. render jsonapi: {
  4. footer_text: 'CopyRight',
  5. footer_color: '#FFF',
  6. footer_logo: 's3_iamge_path',
  7. }
  8. end
  9. end
  10.  
  11. class ConfigurationSerializer < JSONAPI::Serializable::Resource
  12. attributes :footer_text, :footer_color, :footer_logo
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement