Questions tagged [owner]

209 questions
1
vote
1 answer

Add a user as a member to a Microsoft Planner Plan using Microsoft Graph API

I would like to know how to add a user as a member to a Microsoft Planner Plan using Microsoft Graph API and PowerShell. I know that the membership to a plan is ruled by the membership to the M365 Group. The user is already the owner of the group to…
1
vote
1 answer

Why does create table operation attach owner as 'yugabyte' to a new table yet the database to which am connected has a different owner?

I have installed yugabytedb in minikube on my laptop and created a database with owner 'Rodgers'. Then I run the ysqlsh to execute ysql commands from the terminal, one of which is 'CREATE DATABASE ...'. Problem When I try connecting to the database…
1
vote
1 answer

Transfer ownership of a file to a user outside my organisation in Google App Script

I would like to change the owner of a file in google apps script. I tried following code: function changeOwner() { var file = DriveApp.getFileById("id"); file.setOwner("dummy@gmail.com"); } It generate an exception error: Argument is not…
Arnaud deb
  • 13
  • 4
1
vote
1 answer

Why is my microsoft teams channel ownerless?

I have heard from multiple sources that when a user is the only owner of a private channel on a team, but leaves the Office 365 group associated with that team, ownership of the private channel is automatically passed to another member of the team.…
4yl1n
  • 148
  • 1
  • 10
1
vote
1 answer

Rails - Owner of data - User, or company (or group)

In the models of my app I want to have the option that the owner of each record is a user or a company... Normally I have a user_id field (user model) in each model for keeping the owner... What are the implementation options for this? How can I…
1
vote
1 answer

Changed DB Owner

I accidentally changed the DB owner to SA. Is there logging that would show what the previous DB owner was? Thanks.
Jerry
  • 11
  • 1
1
vote
3 answers

Dropbox Java API - File owner emails

The Java API of Dropbox returns a list of file owner names via a method like public List getOwners(DbxClientV2 client, String fileId) { SharedFileMetadata metadata = client.sharing().getFileMetadata(); return…
PNS
  • 19,295
  • 32
  • 96
  • 143
1
vote
1 answer

Aeonbits.OWNER doesn't work in maven? Troubleshooting

For some reason when I run mvn clean test -Denv=test -Dplatform=test maven cannot execute owner's method private static Environment config = configFactory.create(Environment.class, System.getProperties()); private static String url =…
MrDSLow
  • 55
  • 11
1
vote
0 answers

Windows 7 and 10 - Change file/folder ownership at command line, but not to just myself

In Windows 7 and 10, How can I change the owner of files and folders at the command line to any user I want (myself, TrustedInstaller, Everyone, etc)? Just about everything I Google leads to TAKEOWN, but as far as I can see, that only lets me change…
CyberTaco
  • 338
  • 1
  • 3
  • 14
1
vote
1 answer

How to get the Owner of the ContextMenu (from Silverlight 4 toolkit)?

When I use ContextMenu from Silverlight 4 Toolkit I want to get ContextMenu instance's Owner, but it's not available since in ContextMenu class Owner is an internal property. For example, I have a Rectangle put inside a Border. When I right-click a…
1
vote
0 answers

Add an organisation as an owner of an NPM package

I am looking to add an organisation as a user or transfer ownership of a package so that it appears in their 'packages' section. Attempting to associate them via npm add user *org registry name* doesn't work, since they're an org and not a…
Ryan Achten
  • 495
  • 4
  • 21
1
vote
0 answers

WPF window ownership is broken at the 50s window

I am spending a few days to solve my issue and I hope that someone of you encountered this thing. In order to implement a chain of windows by WPF to be ordered by z-index, I tried to make each window as an owner of the next window in the hierarchy.…
Elad Potok
  • 39
  • 2
1
vote
1 answer

How to set window's owner to MainWindow through XAML in WPF?

How can I set window's owner to Application.Current.MainWindow through XAML? So far I've tried this:
Mykhailo Seniutovych
  • 3,527
  • 4
  • 28
  • 50
1
vote
2 answers

Call method on "owning" class?

Is there a way to call a method of an "owning" class? (the class that created the object). Here's the situation: my app uses a UIScrollView. I need to process touch events, so instead of using a UIScrollView directly, I subclass it and use…
kend0g187
  • 31
  • 1
  • 4
1
vote
1 answer

How do I get WPF Window to stay on top of another?

Instead of using a traditional splash screen, I want to display a login window to allow the user to enter their credentials. Meanwhile, in the background, I want to initialize the app, then load the main window. The problem is that the login…
Dan
  • 1,215
  • 1
  • 10
  • 22