You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
├── platform
│ ├── regions
│ │ ├── activity
│ │ │ └── activity_region.rb
│ │ ├── jobs
│ │ │ ├── assign_developer_region.rb
│ │ │ ├── candidates_region.rb
│ │ │ ├── # etc in subdirectories
├── public
│ ├── regions
│ │ ├── authors_region.rb
│ │ ├── blog_subscribe_region.rb
│ │ ├── # etc with no subdirectories
Projections for region type are populated only from public/ directory. Docs say nothing about this case so I'm not sure how to configure it to include files from both platform/ and public/ dirs.
The text was updated successfully, but these errors were encountered:
The issue is the platform directory has an extra level of nesting under regions, which is not supported by *. If these are the only two paths you care about, you could just add features/support/lib/pages/platform/regions/*_region.rb and features/support/lib/pages/public/regions/*_region.rb as separate paths.
But in this case I'm going to miss platform/public part in the list.
I think there should be some way to achieve the desired behavior. I can try to add it if you can tell me where to look at and how projection should look like.
I have the following configuration:
And the directory/file structure:
Projections for
region
type are populated only frompublic/
directory. Docs say nothing about this case so I'm not sure how to configure it to include files from bothplatform/
andpublic/
dirs.The text was updated successfully, but these errors were encountered: