Skip to content

Instantly share code, notes, and snippets.

@mib32
Created October 26, 2014 13:20
Show Gist options
  • Save mib32/a1f0ac990576ef1c91f2 to your computer and use it in GitHub Desktop.
Save mib32/a1f0ac990576ef1c91f2 to your computer and use it in GitHub Desktop.
routes.rb:
resources 'news', controller: 'posts', type: 'NewsPost'
get 'posts(/:id)', to: redirect('/news/%{id}')
news_post.rb:
class NewsPost < Post
def type_name
'Новость'
end
def self.model_name
Post.model_name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment