File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 22
33Note: For changes to the API, see https://shopify.dev/changelog?filter=api
44## Unreleased
5+ - [ #1395 ] ( https://github.com/Shopify/shopify-api-ruby/pull/1395 ) use correct internal admin host for 1P app development
56
67## 14.11.0
78- [ #1386 ] ( https://github.com/Shopify/shopify-api-ruby/pull/1386 ) Add support for 2025-07 API version
Original file line number Diff line number Diff line change @@ -114,7 +114,8 @@ def auth_base_uri(shop)
114114 return "https://#{ shop } /admin" unless defined? ( DevServer ) && shop . include? ( ".my.shop.dev" )
115115
116116 # For first-party apps in development only, we leverage DevServer to build the admin base URI
117- admin_web = T . unsafe ( Object . const_get ( "DevServer" ) ) . new ( "web" ) # rubocop:disable Sorbet/ConstantsFromStrings
117+ admin_web = T . unsafe ( Object . const_get ( "DevServer" ) ) # rubocop:disable Sorbet/ConstantsFromStrings
118+ . new ( "admin-web" )
118119 admin_host = admin_web . host! ( nonstandard_host_prefix : "admin" )
119120 shop_name = shop . split ( "." ) . first
120121
You can’t perform that action at this time.
0 commit comments