1
2
3
4
5
6
def edit(id)
  only_provides :html
  @domain = Domain[id]
  raise NotFound unless @domain
  render
end