CloudKit "Deploy to Production" doesn't show record changes, "Deploy" greyed out - icloud

When I click "Deploy to Production" in CloudKit, it looks like this:
As you can see, there's two updates to indexes. But the problem is, that's not the only change I made to my schema - there's new fields on some record types. They're not showing up at all.
What's more, even if I wanted to deploy just these two index changes, the Deploy button is greyed out! What's going on? How do I convince CloudKit to recognise the changes I've made?

You need Edit and manage permissions for this iCloud Container.
Even if your account is added as an admin in the team you still need to have manage iCloud permission.

Related

Google Cloud doesn't allow me to create my first project with admin role

I'm trying to create my first project in google cloud with organization's administrator account. I have access to the administrator's email and passwords and I am logging in with that account to do so. The problem is that when I click on create new project I receive the following error:
There was an error while loading /home/dashboard?project=proven-now-305315&authuser=1.
You are missing at least one of the following required permissions:
Project
resourcemanager.projects.get
Check that the project ID is valid and you have permissions to access it. Learn more
Send feedback
The detail is that in my resource administration panel I already gave the permission that they ask me to the resource as shown in the following image:
As I have read, the project IAM Admin role should grant the resourcemanager.projects.get role and as you can see in the image the resource rcv # .. which is the administrator has it activated, however I keep trying to create a new project and it doesn't allow me to do it. Any idea?
In case anybody else, like me, reaches this answer, I want to point out that the accepted answer is correct, but for me I had to also make sure that within the settings, I ensured that Project Creation Settings on the right pane and under the section of Cloud Resource Manager Api Settings was set to on. It was turned off by default. Many people on my team overlooked this as it is significantly smaller text.
This may be an option that was not present before or it was turned on by default in the past. For us, it was turned off.
Please refer to the included image for a visual representation of the
settings that need to be turned on.
The problem was for some reason the Google Cloud was disable for all users, I solved following this instructions. Solved with this!
To activate this service, please follow the steps:
Access the admin console and go to Apps -> Additional Google Services
Look for the service “Google Cloud Platform” and click on the box next to it
In to top right corner click in “ON”
Confirm you want to turn it on in the pop-up box.

Redmine email notifications

I am starting to work with redmine and I need to configure the email notifications for users
I want users to receive emails when there is an issue assigned to a group they are part of,but I also want some specific users (like managers) to receive all emails from all issues.
And the actual configuration of redmine does not allow me to do that because is the same configuration for all users.
Any ideas?
That kind of configuration is user specific. The admin can set up the default level of notification in Administration -> Settings -> Notifications, but every user can set up a custom level in "My account".
You could, however, bulk-modify the notification setting for specific users using a database script. The notification setting appears to be in the "mail_notification" field of the "users table".
For instance, in my Redmine instance I've got the several values:
select distinct(mail_notification) from users;
only_my_events
only_assigned
selected
none
After I set up my own configuration to "For all events on all my projects", as you want, a new value 'all' appears.
Therefore, you might try a script like:
update users
set mail_notification='all'
where id in ('user1_id','user2_id',......'usern_id');
It's dirty, and I would try it first in a test environment (and backup your production database before doing it in production), but it will probably work.
Bear in mind that, even if you set up the notification configuration for a user this way, (s)he can log in later and set it up to another value. There is no way to block users from changing that parameter as far as I know.

Pinax stripe not allowing me to add payment plans in admin panel

I am developing a django application using Pinax Stripe(https://github.com/pinax/pinax-stripe). I have added the web hooks, test api keys. But when I login into the admin panel and go to 'plans' section to create a plan, in the 'create a plan' page. It doesnt show the text fields for admin to create a plan. Have a I gone wrong with the setup somewhere? I really dont understand this.
To create a plan you have to do the following.
Go to the Stripe account settings https://dashboard.stripe.com/account
Set up your webhook under the "webhook" tab
Go to the Dashboard https://dashboard.stripe.com/test/dashboard
On the left side under "subscriptions" go to "plans"
Create a plan.
Go back to your virtual envrionment and write the following management command in the consolepython manage.py sync_plans
Once this is done you should be able to see your plans. Let me know if that works.

Xcode 6.1 won't let me access CloudKit Dashboard

After everything had been set up for CloudKit, with provisioning profiles and CloudKit container set up, I still get the message,
There are no CloudKit enabled apps associated with this AppleID. Contact your team administrator...
when trying to access the Dashboard. I had previously tried everything, from renaming my entire project to making sure I was signed into iCloud before trying. All of the 'check boxes' were checked in the iCloud part of the Capabilities section.
The solution, as it turns out, is that only team administrators themselves can access the Dashboard. My professor made an administrator and it worked. I never explicitly saw this anywhere on posts or in Apple documentation.
I had the same message in cloudKit dashboard, it turned out I was logged in with a different appleID.
Additionally, the bundleID and containerID you point to must all be consistent with the Container name.

WSO2 Governance Registry UI customization

Folks,
I'd like to have something like the following in our service registry.
I'd like to add a field to the UI that when I click on it in the UI, it does a select from the database and creates a popup with the data returned from that database select.
is this possible?
For instance, I'd like to have a button on the UI page for a service that when clicked, goes to the database and gets all "METHODS" of the service (I would have previously populated customized database fields after analyzing the service definition, and this button would execute a customized select statement to pull the required data out of the db).
I am not entirely clear about what your requirements is but i think this might help take look at the doc for RXT[1] and see if you can solve your requirement with that :).
[1] http://docs.wso2.org/wiki/pages/viewpage.action?pageId=22185121
Thanks,
Pulasthi