ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
248 B

  1. class IpAddressesController < ApplicationController
  2. def index
  3. @ip_addresses = IpAddress.all
  4. render json: @ip_addresses
  5. end
  6. def show
  7. render json: @ip_address
  8. end
  9. def create
  10. end
  11. def update
  12. end
  13. def destroy
  14. end
  15. end